Skip to content

Commit

Permalink
release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
igordejanovic committed Nov 16, 2024
1 parent fae38a6 commit 1b58dca
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 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.7.0] - 2024-11-16

## Added

- `builder-loc-info` config option which provides location information in the
Expand Down Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ authors = ["Igor R. Dejanović <[email protected]>"]
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"

Expand All @@ -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" }
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 @@ -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]
Expand Down

0 comments on commit 1b58dca

Please sign in to comment.