From 4322ee3f0aab9f74ab711457dc700e491e2adb4d Mon Sep 17 00:00:00 2001 From: Igor Dejanovic Date: Mon, 11 Nov 2024 22:16:40 +0100 Subject: [PATCH] release 0.6.3 --- CHANGELOG.md | 8 +++++++- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fdafd245..652f7f3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # [Unreleased] + +# [0.6.3] - 2024-11-11 + ## Fixed - attempt to subtract causes overflow in GLR default builder. See [16]. Thanks @@ -141,7 +144,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release. See the README for the features available in this release. -[unreleased]: https://github.com/igordejanovic/rustemo/compare/0.6.0...HEAD +[unreleased]: https://github.com/igordejanovic/rustemo/compare/0.6.3...HEAD +[0.6.3]: https://github.com/igordejanovic/rustemo/compare/0.6.2...0.6.3 +[0.6.2]: https://github.com/igordejanovic/rustemo/compare/0.6.1...0.6.2 +[0.6.1]: https://github.com/igordejanovic/rustemo/compare/0.6.0...0.6.1 [0.6.0]: https://github.com/igordejanovic/rustemo/compare/0.5.0...0.6.0 [0.5.0]: https://github.com/igordejanovic/rustemo/compare/0.4.0...0.5.0 [0.4.0]: https://github.com/igordejanovic/rustemo/compare/0.3.0...0.4.0 diff --git a/Cargo.lock b/Cargo.lock index c6576db3..550e0d49 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -57,7 +57,7 @@ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" [[package]] name = "calculator" -version = "0.6.2" +version = "0.6.3" dependencies = [ "rustemo", "rustemo-compiler", @@ -379,7 +379,7 @@ dependencies = [ [[package]] name = "json" -version = "0.6.2" +version = "0.6.3" dependencies = [ "rustemo", "rustemo-compiler", @@ -557,7 +557,7 @@ dependencies = [ [[package]] name = "readme_example" -version = "0.6.2" +version = "0.6.3" dependencies = [ "rustemo", ] @@ -593,7 +593,7 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "rustemo" -version = "0.6.2" +version = "0.6.3" dependencies = [ "colored", "fancy-regex", @@ -604,7 +604,7 @@ dependencies = [ [[package]] name = "rustemo-compiler" -version = "0.6.2" +version = "0.6.3" dependencies = [ "clap 3.2.25", "colored", @@ -620,7 +620,7 @@ dependencies = [ [[package]] name = "rustemo-tests" -version = "0.6.2" +version = "0.6.3" dependencies = [ "rustemo", "rustemo-compiler", diff --git a/Cargo.toml b/Cargo.toml index 203bd9c3..f5a5792b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,6 +46,6 @@ authors = ["Igor R. Dejanović "] keywords = ["parser", "generator", "LR", "grammar"] categories = ["parsing"] license = "Apache-2.0 OR MIT" -version = "0.6.2" +version = "0.6.3" edition = "2021" rust-version = "1.74"