From 2248241b6a98e05f2f98398da7c6da3bc85be8fa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 23 Apr 2024 17:14:26 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.4.3=20=E2=86=92=200.5.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cz.toml | 2 +- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- crates/recp/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.cz.toml b/.cz.toml index d239011..666f57a 100644 --- a/.cz.toml +++ b/.cz.toml @@ -2,7 +2,7 @@ name = "cz_conventional_commits" tag_format = "v$version" version_type = "semver" -version = "0.4.3" +version = "0.5.0" update_changelog_on_bump = true major_version_zero = true version_files = [ diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d11337..5c1956b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.5.0 (2024-04-23) + +### Fix + +- make serde optional and add serialize if enabled + ## v0.4.3 (2024-04-18) ### Fix diff --git a/Cargo.toml b/Cargo.toml index d6d02fb..0147448 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/recipe-parser", "crates/recp"] resolver = "2" [workspace.package] -version = "0.4.3" +version = "0.5.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 691936b..9a6747a 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.4.3" } +recipe-parser = { path = "../recipe-parser", version = "0.5.0" } console = "0.15.7" tabwriter = "1.2.1"