From 8271f15952dce2ab022d592f64fef43268352e2b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 18 Apr 2024 06:54:20 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.4.2=20=E2=86=92=200.4.3?= 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 2c27881..d239011 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.2" +version = "0.4.3" update_changelog_on_bump = true major_version_zero = true version_files = [ diff --git a/CHANGELOG.md b/CHANGELOG.md index c5eaee5..8d11337 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.4.3 (2024-04-18) + +### Fix + +- use repeat instead of repeat_till + ## v0.4.2 (2024-04-16) ### Fix diff --git a/Cargo.toml b/Cargo.toml index f50f6f3..d6d02fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/recipe-parser", "crates/recp"] resolver = "2" [workspace.package] -version = "0.4.2" +version = "0.4.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 eeeeb09..691936b 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.2" } +recipe-parser = { path = "../recipe-parser", version = "0.4.3" } console = "0.15.7" tabwriter = "1.2.1"