diff --git a/Cargo.lock b/Cargo.lock index 0ef9496f7..a4c10f815 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1987,7 +1987,7 @@ dependencies = [ [[package]] name = "openstack_cli" -version = "0.7.2" +version = "0.7.3" dependencies = [ "assert_cmd", "better-panic", @@ -2022,7 +2022,7 @@ dependencies = [ [[package]] name = "openstack_sdk" -version = "0.11.1" +version = "0.11.2" dependencies = [ "async-trait", "bincode", @@ -2067,7 +2067,7 @@ dependencies = [ [[package]] name = "openstack_tui" -version = "0.1.2" +version = "0.1.3" dependencies = [ "better-panic", "clap", diff --git a/openstack_cli/CHANGELOG.md b/openstack_cli/CHANGELOG.md index 3ece36b48..8718c5b83 100644 --- a/openstack_cli/CHANGELOG.md +++ b/openstack_cli/CHANGELOG.md @@ -6,6 +6,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.3](https://github.com/gtema/openstack/compare/openstack_cli-v0.7.2...openstack_cli-v0.7.3) - 2024-09-28 + +### Added + +- Enable multiple network resources ([#593](https://github.com/gtema/openstack/pull/593)) +- Add network.flavor commands ([#585](https://github.com/gtema/openstack/pull/585)) +- Enable network.default-security-group-rule commands ([#582](https://github.com/gtema/openstack/pull/582)) +- Enable network.auto_allocated_topology command ([#580](https://github.com/gtema/openstack/pull/580)) +- Enable network.agent commands ([#579](https://github.com/gtema/openstack/pull/579)) +- Rework doc building ([#568](https://github.com/gtema/openstack/pull/568)) +- Improve crate (interface) documentation ([#583](https://github.com/gtema/openstack/pull/583)) + +### Fixed + +- Fix network.agent property types ([#586](https://github.com/gtema/openstack/pull/586)) + +### Other + +- Further doc clarifications ([#584](https://github.com/gtema/openstack/pull/584)) + ## [0.7.2](https://github.com/gtema/openstack/compare/openstack_cli-v0.7.1...openstack_cli-v0.7.2) - 2024-09-20 ### Added diff --git a/openstack_cli/Cargo.toml b/openstack_cli/Cargo.toml index a18d2d7d8..1ae47c796 100644 --- a/openstack_cli/Cargo.toml +++ b/openstack_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openstack_cli" -version = "0.7.2" +version = "0.7.3" authors = [ "Artem Goncharov (gtema)", ] diff --git a/openstack_sdk/CHANGELOG.md b/openstack_sdk/CHANGELOG.md index b2842404a..7ecd7dbc3 100644 --- a/openstack_sdk/CHANGELOG.md +++ b/openstack_sdk/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.2](https://github.com/gtema/openstack/compare/openstack_sdk-v0.11.1...openstack_sdk-v0.11.2) - 2024-09-28 + +### Added + +- Improve crate (interface) documentation ([#583](https://github.com/gtema/openstack/pull/583)) +- Rework doc building ([#568](https://github.com/gtema/openstack/pull/568)) + +### Other + +- Further doc clarifications ([#584](https://github.com/gtema/openstack/pull/584)) + ## [0.11.1](https://github.com/gtema/openstack/compare/openstack_sdk-v0.11.0...openstack_sdk-v0.11.1) - 2024-09-20 ### Added diff --git a/openstack_sdk/Cargo.toml b/openstack_sdk/Cargo.toml index 5add24db6..f22f527ea 100644 --- a/openstack_sdk/Cargo.toml +++ b/openstack_sdk/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "openstack_sdk" description = "OpenStack SDK" -version = "0.11.1" +version = "0.11.2" keywords = ["api", "openstack"] categories = ["api-bindings"] authors = ["Artem Goncharov (gtema)"] diff --git a/openstack_tui/CHANGELOG.md b/openstack_tui/CHANGELOG.md index 48bf3cf75..abf259e61 100644 --- a/openstack_tui/CHANGELOG.md +++ b/openstack_tui/CHANGELOG.md @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/gtema/openstack/compare/openstack_tui-v0.1.2...openstack_tui-v0.1.3) - 2024-09-28 + +### Added + +- Enable new fuzzy_select component ([#578](https://github.com/gtema/openstack/pull/578)) +- Reorganize cloud_worker better ([#577](https://github.com/gtema/openstack/pull/577)) +- Add identity.projects view ([#576](https://github.com/gtema/openstack/pull/576)) +- Rework doc building ([#568](https://github.com/gtema/openstack/pull/568)) + +### Fixed + +- Repair go back from console output ([#589](https://github.com/gtema/openstack/pull/589)) +- Disable pagination limits ([#587](https://github.com/gtema/openstack/pull/587)) + ## [0.1.2](https://github.com/gtema/openstack/compare/openstack_tui-v0.1.1...openstack_tui-v0.1.2) - 2024-09-20 ### Added diff --git a/openstack_tui/Cargo.toml b/openstack_tui/Cargo.toml index f78358b21..426e840d4 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.1.2" +version = "0.1.3" keywords = ["tui", "openstack"] categories = ["command-line-utilities"] authors = ["Artem Goncharov (gtema)"]