diff --git a/Cargo.lock b/Cargo.lock index 41c1471ac..028aaab24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2232,7 +2232,7 @@ dependencies = [ [[package]] name = "openstack_cli" -version = "0.13.0" +version = "0.13.1" dependencies = [ "assert_cmd", "bytes", @@ -2271,7 +2271,7 @@ dependencies = [ [[package]] name = "openstack_sdk" -version = "0.22.0" +version = "0.22.1" dependencies = [ "async-trait", "bincode", @@ -2319,7 +2319,7 @@ dependencies = [ [[package]] name = "openstack_tui" -version = "0.13.0" +version = "0.13.1" dependencies = [ "async-trait", "chrono", @@ -2359,7 +2359,7 @@ dependencies = [ [[package]] name = "openstack_types" -version = "0.22.0" +version = "0.22.1" dependencies = [ "chrono", "openstack_sdk", diff --git a/openstack_cli/CHANGELOG.md b/openstack_cli/CHANGELOG.md index beffc302d..0e9665f3f 100644 --- a/openstack_cli/CHANGELOG.md +++ b/openstack_cli/CHANGELOG.md @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.1](https://github.com/gtema/openstack/compare/openstack_cli-v0.13.0...openstack_cli-v0.13.1) - 2025-09-02 + +### Added + +- Capture request-id in the OpenStack API error ([#1391](https://github.com/gtema/openstack/pull/1391)) + +### Other + +- Address new linter warning (MISMATCHED_LIFETIME_SYNTAXES) ([#1371](https://github.com/gtema/openstack/pull/1371)) +- Rename the v3federation to v4federation ([#1388](https://github.com/gtema/openstack/pull/1388)) +- *(deps)* Bump hyper from 1.6.0 to 1.7.0 ([#1377](https://github.com/gtema/openstack/pull/1377)) +- Address some 1.89 clippy warnings ([#1369](https://github.com/gtema/openstack/pull/1369)) + ## [0.13.0](https://github.com/gtema/openstack/compare/openstack_cli-v0.12.4...openstack_cli-v0.13.0) - 2025-07-28 ### Added diff --git a/openstack_cli/Cargo.toml b/openstack_cli/Cargo.toml index d9b04e89d..a79d0b398 100644 --- a/openstack_cli/Cargo.toml +++ b/openstack_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openstack_cli" -version = "0.13.0" +version = "0.13.1" authors = [ "Artem Goncharov (gtema)", ] diff --git a/openstack_sdk/CHANGELOG.md b/openstack_sdk/CHANGELOG.md index 059e20eb5..dd11d604a 100644 --- a/openstack_sdk/CHANGELOG.md +++ b/openstack_sdk/CHANGELOG.md @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.22.1](https://github.com/gtema/openstack/compare/openstack_sdk-v0.22.0...openstack_sdk-v0.22.1) - 2025-09-02 + +### Added + +- Capture request-id in the OpenStack API error ([#1391](https://github.com/gtema/openstack/pull/1391)) + +### Other + +- Rename the v3federation to v4federation ([#1388](https://github.com/gtema/openstack/pull/1388)) +- *(deps)* Bump hyper from 1.6.0 to 1.7.0 ([#1377](https://github.com/gtema/openstack/pull/1377)) +- Address new linter warning (MISMATCHED_LIFETIME_SYNTAXES) ([#1371](https://github.com/gtema/openstack/pull/1371)) +- Address some 1.89 clippy warnings ([#1369](https://github.com/gtema/openstack/pull/1369)) + ## [0.22.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.21.4...openstack_sdk-v0.22.0) - 2025-07-28 ### Added diff --git a/openstack_sdk/Cargo.toml b/openstack_sdk/Cargo.toml index 42b5b652d..7c9234160 100644 --- a/openstack_sdk/Cargo.toml +++ b/openstack_sdk/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "openstack_sdk" description = "OpenStack SDK" -version = "0.22.0" +version = "0.22.1" keywords = ["api", "openstack"] categories = ["api-bindings"] authors = ["Artem Goncharov (gtema)"] diff --git a/openstack_tui/CHANGELOG.md b/openstack_tui/CHANGELOG.md index c888e98ec..bdcc5ff48 100644 --- a/openstack_tui/CHANGELOG.md +++ b/openstack_tui/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.1](https://github.com/gtema/openstack/compare/openstack_tui-v0.13.0...openstack_tui-v0.13.1) - 2025-09-02 + +### Other + +- Address new linter warning (MISMATCHED_LIFETIME_SYNTAXES) ([#1371](https://github.com/gtema/openstack/pull/1371)) +- Address some 1.89 clippy warnings ([#1369](https://github.com/gtema/openstack/pull/1369)) + ## [0.13.0](https://github.com/gtema/openstack/compare/openstack_tui-v0.12.4...openstack_tui-v0.13.0) - 2025-07-28 ### Other diff --git a/openstack_tui/Cargo.toml b/openstack_tui/Cargo.toml index db32ddd23..3404cb297 100644 --- a/openstack_tui/Cargo.toml +++ b/openstack_tui/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "openstack_tui" description = "OpenStack Terminal User interface" -version = "0.13.0" +version = "0.13.1" keywords = ["tui", "openstack"] categories = ["command-line-utilities"] authors = ["Artem Goncharov (gtema)"] diff --git a/openstack_types/CHANGELOG.md b/openstack_types/CHANGELOG.md index f0cb201ab..2f4b94d85 100644 --- a/openstack_types/CHANGELOG.md +++ b/openstack_types/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.22.1](https://github.com/gtema/openstack/compare/openstack_types-v0.22.0...openstack_types-v0.22.1) - 2025-09-02 + +### Other + +- *(deps)* Bump uuid from 1.17.0 to 1.18.0 ([#1372](https://github.com/gtema/openstack/pull/1372)) +- Address new linter warning (MISMATCHED_LIFETIME_SYNTAXES) ([#1371](https://github.com/gtema/openstack/pull/1371)) + ## [0.22.0](https://github.com/gtema/openstack/compare/openstack_types-v0.21.4...openstack_types-v0.22.0) - 2025-07-28 ### Added diff --git a/openstack_types/Cargo.toml b/openstack_types/Cargo.toml index 42589cba9..990f1dac8 100644 --- a/openstack_types/Cargo.toml +++ b/openstack_types/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "openstack_types" description = "OpenStack API Types" -version = "0.22.0" +version = "0.22.1" keywords = ["api", "openstack"] categories = ["api-bindings"] authors = ["Artem Goncharov (gtema)"]