From 1b58dca6f190536f657be9c9aaa13191bdc7408c Mon Sep 17 00:00:00 2001 From: Igor Dejanovic Date: Sat, 16 Nov 2024 17:47:29 +0100 Subject: [PATCH] release 0.7.0 --- CHANGELOG.md | 6 +++++- Cargo.lock | 12 ++++++------ Cargo.toml | 4 ++-- docs/src/tutorials/calculator/calculator1/Cargo.toml | 2 +- 4 files changed, 14 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9c17416..b1102b6a 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.7.0] - 2024-11-16 + ## Added - `builder-loc-info` config option which provides location information in the @@ -152,7 +155,8 @@ 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.3...HEAD +[unreleased]: https://github.com/igordejanovic/rustemo/compare/0.7.0...HEAD +[0.7.0]: https://github.com/igordejanovic/rustemo/compare/0.6.3...0.7.0 [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 diff --git a/Cargo.lock b/Cargo.lock index 2e2b75d3..8d25f7c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -63,7 +63,7 @@ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" [[package]] name = "calculator" -version = "0.6.3" +version = "0.7.0" dependencies = [ "rustemo", "rustemo-compiler", @@ -462,7 +462,7 @@ dependencies = [ [[package]] name = "json" -version = "0.6.3" +version = "0.7.0" dependencies = [ "rustemo", "rustemo-compiler", @@ -685,7 +685,7 @@ dependencies = [ [[package]] name = "readme_example" -version = "0.6.3" +version = "0.7.0" dependencies = [ "rustemo", ] @@ -730,7 +730,7 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "rustemo" -version = "0.6.3" +version = "0.7.0" dependencies = [ "colored", "fancy-regex", @@ -741,7 +741,7 @@ dependencies = [ [[package]] name = "rustemo-compiler" -version = "0.6.3" +version = "0.7.0" dependencies = [ "clap 3.2.25", "colored", @@ -757,7 +757,7 @@ dependencies = [ [[package]] name = "rustemo-tests" -version = "0.6.3" +version = "0.7.0" dependencies = [ "rustemo", "rustemo-compiler", diff --git a/Cargo.toml b/Cargo.toml index 271fa01c..905f9ddc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ authors = ["Igor R. Dejanović "] keywords = ["parser", "generator", "LR", "grammar"] categories = ["parsing"] license = "Apache-2.0 OR MIT" -version = "0.6.3" +version = "0.7.0" edition = "2021" rust-version = "1.74" @@ -48,5 +48,5 @@ fancy-regex = "0.13.0" criterion = "0.3.5" serial_test = "3.2.0" -rustemo = { path = "./rustemo", version = "0.6"} +rustemo = { path = "./rustemo", version = "0.7"} rustemo-compiler = { path = "./rustemo-compiler" } diff --git a/docs/src/tutorials/calculator/calculator1/Cargo.toml b/docs/src/tutorials/calculator/calculator1/Cargo.toml index b8ac1920..10ba175a 100644 --- a/docs/src/tutorials/calculator/calculator1/Cargo.toml +++ b/docs/src/tutorials/calculator/calculator1/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" [dependencies] # A relative path to rustemo crate is used here for usage in the rustemo project tree. # In your projects you should just specify the version. -rustemo = { version = "0.6", path = "../../../../../rustemo" } +rustemo = { version = "0.7", path = "../../../../../rustemo" } # ANCHOR_END: tutorial [dev-dependencies]