From 1190e88983ada0645be731a3aecc26bca0d716b5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 11 Oct 2024 16:20:19 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20bump=20version=200.19.0=20=E2=86=92=20?= =?UTF-8?q?0.19.1=20[skip-ci]?= 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/cli/Cargo.toml | 2 +- crates/schematools/src/lib.rs | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.cz.toml b/.cz.toml index 10d536b..eede329 100644 --- a/.cz.toml +++ b/.cz.toml @@ -1,6 +1,6 @@ [tool.commitizen] name = "cz_conventional_commits" -version = "0.19.0" +version = "0.19.1" version_files = [ "Cargo.toml:^version", "crates/schematools/src/lib.rs:const VERSION", diff --git a/CHANGELOG.md b/CHANGELOG.md index a73843d..4d36a65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.19.1 (2024-10-11) + +### Fix + +- arm macos support added on github actions + ## v0.19.0 (2024-10-11) ### Feat diff --git a/Cargo.toml b/Cargo.toml index 0113295..f01df74 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ [workspace.package] license = "MIT" repository = "https://github.com/kstasik/schema-tools" -version = "0.19.0" +version = "0.19.1" [workspace.dependencies] reqwest = { version = "0.11.22", default-features = false, features = ["default-tls", "blocking"] } diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 7977209..0cae2fc 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -25,4 +25,4 @@ clap = { version = "4.4", features = ["derive"] } env_logger = "0.10" sha2 = "0.10" -schematools = { version = "0.19.0", path = "../schematools" } +schematools = { version = "0.19.1", path = "../schematools" } diff --git a/crates/schematools/src/lib.rs b/crates/schematools/src/lib.rs index d1912f3..f85dd20 100644 --- a/crates/schematools/src/lib.rs +++ b/crates/schematools/src/lib.rs @@ -26,4 +26,4 @@ impl Client { } } -pub const VERSION: &str = "0.19.0"; +pub const VERSION: &str = "0.19.1";