diff --git a/.cz.toml b/.cz.toml index 2b308a4..af7fa16 100644 --- a/.cz.toml +++ b/.cz.toml @@ -2,7 +2,7 @@ name = "cz_conventional_commits" tag_format = "v$version" version_type = "semver" -version = "0.8.2" +version = "0.8.3" update_changelog_on_bump = true major_version_zero = true version_files = [ diff --git a/CHANGELOG.md b/CHANGELOG.md index e82c61a..f81ca34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v0.8.3 (2024-10-06) + +### Fix + +- parse backstory and word properly +- update docs and flake + ## v0.8.2 (2024-08-20) ### Fix diff --git a/Cargo.toml b/Cargo.toml index 04e4500..1786d89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.8.2" +version = "0.8.3" 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 fd41af0..9404b60 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.8.2" } +recipe-parser = { path = "../recipe-parser", version = "0.8.3" } console = "0.15.7" tabwriter = "1.2.1"