diff --git a/.cz.toml b/.cz.toml index 1bb5f72..b824b53 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.0" +version = "0.8.1" update_changelog_on_bump = true major_version_zero = true version_files = [ diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c57f35..7a14350 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.8.1 (2024-05-27) + +### Fix + +- use proper feature for wasm + ## v0.8.0 (2024-05-27) ### Feat diff --git a/Cargo.toml b/Cargo.toml index 9f6166b..cacbd7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.8.0" +version = "0.8.1" 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 c5b06ad..b78f582 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.0" } +recipe-parser = { path = "../recipe-parser", version = "0.8.1" } console = "0.15.7" tabwriter = "1.2.1"