diff --git a/.cz.toml b/.cz.toml index 42d4f5b..272e7d7 100644 --- a/.cz.toml +++ b/.cz.toml @@ -2,7 +2,7 @@ name = "cz_conventional_commits" tag_format = "v$version" version_type = "semver" -version = "0.2.6" +version = "0.2.7" update_changelog_on_bump = true major_version_zero = true version_files = [ diff --git a/CHANGELOG.md b/CHANGELOG.md index 47ab583..9b59647 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.2.7 (2023-06-11) + +### Fix + +- cargo issue on bump + ## v0.2.6 (2023-06-11) ### Fix diff --git a/Cargo.toml b/Cargo.toml index e6020b6..9d4d8c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ ] [workspace.package] -version = "0.2.6" +version = "0.2.7" edition = "2021" description = "Write recipes understood by humans and machines" keywords = ["recipes", "cooking", "markup-language", "recipe-lang"] diff --git a/crates/recp/Cargo.toml b/crates/recp/Cargo.toml index 5554cb2..afda7c9 100644 --- a/crates/recp/Cargo.toml +++ b/crates/recp/Cargo.toml @@ -13,6 +13,6 @@ categories = ["command-line-utilities"] [dependencies] Inflector = "0.11.4" clap = { version = "4.3.1", features = ["derive"] } -recipe-parser = { path = "../recipe-parser", version = "0.2.6" } +recipe-parser = { path = "../recipe-parser", version = "0.2.7" } console = "0.15.7" tabwriter = "1.2.1"