diff --git a/.cz.toml b/.cz.toml index eede329..0728a3e 100644 --- a/.cz.toml +++ b/.cz.toml @@ -1,6 +1,6 @@ [tool.commitizen] name = "cz_conventional_commits" -version = "0.19.1" +version = "0.19.2" version_files = [ "Cargo.toml:^version", "crates/schematools/src/lib.rs:const VERSION", diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d36a65..6b1ae5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.19.2 (2024-10-14) + +### Fix + +- ubuntu runner fixed version + ## v0.19.1 (2024-10-11) ### Fix diff --git a/Cargo.toml b/Cargo.toml index f01df74..5d160d3 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.1" +version = "0.19.2" [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 0cae2fc..cf0bd23 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.1", path = "../schematools" } +schematools = { version = "0.19.2", path = "../schematools" } diff --git a/crates/schematools/src/lib.rs b/crates/schematools/src/lib.rs index f85dd20..627fb9a 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.1"; +pub const VERSION: &str = "0.19.2";