diff --git a/.cz.toml b/.cz.toml index 05fe18c..1bb5f72 100644 --- a/.cz.toml +++ b/.cz.toml @@ -2,7 +2,7 @@ name = "cz_conventional_commits" tag_format = "v$version" version_type = "semver" -version = "0.7.0" +version = "0.8.0" update_changelog_on_bump = true major_version_zero = true version_files = [ diff --git a/CHANGELOG.md b/CHANGELOG.md index d76b4d5..5c57f35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v0.8.0 (2024-05-27) + +### Feat + +- add support for tsify under wasm feature + +### Fix + +- improve error messages + ## v0.7.0 (2024-04-24) ### BREAKING CHANGE diff --git a/Cargo.toml b/Cargo.toml index e826da2..9f6166b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.7.0" +version = "0.8.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 8e0f5b4..c5b06ad 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.7.0" } +recipe-parser = { path = "../recipe-parser", version = "0.8.0" } console = "0.15.7" tabwriter = "1.2.1"