diff --git a/.cz.toml b/.cz.toml index 53e5f6a..1841d72 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.0" +version = "0.2.1" update_changelog_on_bump = true major_version_zero = true version_files = [ diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ed2c5b..da4e680 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.2.1 (2023-06-10) + +### Fix + +- flake improvements + ## v0.2.0 (2023-06-09) ### BREAKING CHANGE diff --git a/Cargo.toml b/Cargo.toml index 4767912..1830347 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ ] [workspace.package] -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "Write recipes in a human readable and machine parseable language" keywords = ["recipes", "cooking", "markup-language", "recipe-lang"] diff --git a/crates/recp/Cargo.toml b/crates/recp/Cargo.toml index 969ba29..1b5c014 100644 --- a/crates/recp/Cargo.toml +++ b/crates/recp/Cargo.toml @@ -12,6 +12,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.0" } +recipe-parser = { path = "../recipe-parser", version = "0.2.1" } console = "0.15.7" tabwriter = "1.2.1"