diff --git a/.cz.toml b/.cz.toml index 67036f6..b4d63ea 100644 --- a/.cz.toml +++ b/.cz.toml @@ -1,6 +1,6 @@ [tool.commitizen] name = "cz_conventional_commits" -version = "0.15.2" +version = "0.16.0" version_files = [ "Cargo.toml:^version", "crates/schematools/src/lib.rs:const VERSION" diff --git a/CHANGELOG.md b/CHANGELOG.md index df4e267..1acc7a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## v0.16.0 (2023-12-14) + +### Feat + +- update deps + +### Fix + +- run test consecutively so git initialization not overlaps +- dereference specs with more than one file +- auto cargo.lock update + ## v0.15.2 (2023-10-30) ### Fix diff --git a/Cargo.toml b/Cargo.toml index e7d0a10..1918e99 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.15.2" +version = "0.16.0" [workspace.dependencies] reqwest = { version = "0.11.22", default-features = false, features = ["default-tls", "blocking"] } diff --git a/crates/schematools/src/lib.rs b/crates/schematools/src/lib.rs index 6edac56..6cc7108 100644 --- a/crates/schematools/src/lib.rs +++ b/crates/schematools/src/lib.rs @@ -26,4 +26,4 @@ impl Client { } } -pub const VERSION: &str = "0.15.2"; +pub const VERSION: &str = "0.16.0";