From 1ceb30f7975b3c825a73788a4145c5c34ea44ce0 Mon Sep 17 00:00:00 2001 From: Igor Dejanovic Date: Wed, 2 Oct 2024 16:43:22 +0200 Subject: [PATCH] release: version 0.6.1 --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- docs/src/tutorials/calculator/calculator1/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6622fd2..8ed2d45d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # [Unreleased] +# [0.6.1] - 2024-10-02 + ## Changed - Development setup changed to use [Nix package manager](https://nixos.org/). diff --git a/Cargo.toml b/Cargo.toml index 99e54a9a..017c9f47 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.0" +version = "0.6.1" 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 4b76753b..fbc92352 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.6.0", path = "../../../../../rustemo" } +rustemo = { version = "0.6", path = "../../../../../rustemo" } # ANCHOR_END: tutorial [dev-dependencies]