diff --git a/.cz.toml b/.cz.toml index bf50c5a..16fcae1 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.9" +version = "0.3.0" update_changelog_on_bump = true major_version_zero = true version_files = [ diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e6ffe6..0c9c3ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.3.0 (2023-11-10) + +### Feat + +- add flakestry release + ## v0.2.9 (2023-11-06) ### Fix diff --git a/Cargo.toml b/Cargo.toml index 591b50f..4bf12b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ ] [workspace.package] -version = "0.2.9" +version = "0.3.0" 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 701985c..571284b 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.9" } +recipe-parser = { path = "../recipe-parser", version = "0.3.0" } console = "0.15.7" tabwriter = "1.2.1"