From 68a45566e374a4a6301d78c392b2795f99c26949 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 00:23:18 +0000 Subject: [PATCH] chore(main): release 0.2.0 --- .release-please-manifest.json | 3 ++- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ad5aa1e..04fdb44 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,4 @@ { - "bump-minor-pre-major": true + "bump-minor-pre-major": true, + ".": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d6cf478 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog + +## [0.2.0](https://github.com/nfejzic/mathemascii/compare/0.1.0...v0.2.0) (2023-12-15) + + +### Features + +* implement parsing of ascii math ([#1](https://github.com/nfejzic/mathemascii/issues/1)) ([28e9abd](https://github.com/nfejzic/mathemascii/commit/28e9abdb548060c496a83c9a5bec3723a3f3c5d4)) +* implement rendering to MathMl format ([#4](https://github.com/nfejzic/mathemascii/issues/4)) ([4171de1](https://github.com/nfejzic/mathemascii/commit/4171de1ac6ea7c93537990bfca8c2ce13f7891d7)) +* run tests with cargo-nextest ([92f4a45](https://github.com/nfejzic/mathemascii/commit/92f4a45e07d149cf51b0eafcb04de7ee32eb5851)) diff --git a/Cargo.toml b/Cargo.toml index d6da11f..ca5f6e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mathemascii" -version = "0.1.0" +version = "0.2.0" edition = "2021" authors = ["Nadir Fejzic "] description = "AsciiMath parsing and rendering."