Skip to content

Commit

Permalink
release: version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
igordejanovic committed Jan 23, 2024
1 parent c3c2973 commit a1aa70f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ authors = ["Igor R. Dejanović <[email protected]>"]
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"
2 changes: 1 addition & 1 deletion docs/src/tutorials/calculator/calculator1/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion rustemo-compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down

0 comments on commit a1aa70f

Please sign in to comment.