From a1aa70f28749141ce4818931fa7667e5b6b5673f Mon Sep 17 00:00:00 2001 From: Igor Dejanovic Date: Tue, 23 Jan 2024 11:53:42 +0100 Subject: [PATCH] release: version 0.5.0 --- CHANGELOG.md | 6 +++++- Cargo.toml | 2 +- docs/src/tutorials/calculator/calculator1/Cargo.toml | 2 +- rustemo-compiler/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0eb4ccfa..9c206d9b 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.5.0] - 2024-01-23 + ## Added - `dot` export marks conflict states in red color. @@ -77,7 +80,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.4.0...HEAD +[unreleased]: https://github.com/igordejanovic/rustemo/compare/0.5.0...HEAD +[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 [0.3.0]: https://github.com/igordejanovic/rustemo/compare/0.2.0...0.3.0 [0.2.0]: https://github.com/igordejanovic/rustemo/compare/0.1.0...0.2.0 diff --git a/Cargo.toml b/Cargo.toml index bc3694c1..0f8a9eba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,6 +25,6 @@ authors = ["Igor R. Dejanović "] keywords = ["parser", "generator", "LR", "grammar"] categories = ["parsing"] license = "Apache-2.0 OR MIT" -version = "0.4.0" +version = "0.5.0" edition = "2021" rust-version = "1.74" diff --git a/docs/src/tutorials/calculator/calculator1/Cargo.toml b/docs/src/tutorials/calculator/calculator1/Cargo.toml index 82aac513..c040862f 100644 --- a/docs/src/tutorials/calculator/calculator1/Cargo.toml +++ b/docs/src/tutorials/calculator/calculator1/Cargo.toml @@ -12,7 +12,7 @@ regex = { version = "1.7.1", default-features = false, features = ["std", "unico colored = "2" # 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.4.0", path = "../../../../../rustemo" } +rustemo = { version = "0.5.0", path = "../../../../../rustemo" } # ANCHOR_END: tutorial [dev-dependencies] diff --git a/rustemo-compiler/Cargo.toml b/rustemo-compiler/Cargo.toml index 1667ea34..e87b791c 100644 --- a/rustemo-compiler/Cargo.toml +++ b/rustemo-compiler/Cargo.toml @@ -43,7 +43,7 @@ prettyplease = "0.1.18" colored = "2" # Needed by rustemo generated parsers. -rustemo = { path = "../rustemo", version = "0.4"} +rustemo = { path = "../rustemo", version = "0.5"} # Default string lexer uses regexes and once_cell to init regexes only once. once_cell = { version = "1" }