diff --git a/Cargo.lock b/Cargo.lock index 752156d9a..7739af73e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1714,7 +1714,7 @@ dependencies = [ [[package]] name = "openstack_cli" -version = "0.6.3" +version = "0.6.4" dependencies = [ "assert_cmd", "bytes", @@ -1745,7 +1745,7 @@ dependencies = [ [[package]] name = "openstack_sdk" -version = "0.7.0" +version = "0.8.0" dependencies = [ "async-trait", "bincode", diff --git a/openstack_cli/CHANGELOG.md b/openstack_cli/CHANGELOG.md index 67016c81b..26d410c34 100644 --- a/openstack_cli/CHANGELOG.md +++ b/openstack_cli/CHANGELOG.md @@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.4](https://github.com/gtema/openstack/compare/openstack_cli-v0.6.3...openstack_cli-v0.6.4) - 2024-08-01 + +### Added +- Enable subnetpool command ([#394](https://github.com/gtema/openstack/pull/394)) +- Enable security_groups command ([#393](https://github.com/gtema/openstack/pull/393)) +- New generated content ([#401](https://github.com/gtema/openstack/pull/401)) + +### Fixed +- Fix certain network.SG properties ([#398](https://github.com/gtema/openstack/pull/398)) + +### Other +- Regenerate block-storage resources ([#397](https://github.com/gtema/openstack/pull/397)) +- Address some warning of newest rust ([#395](https://github.com/gtema/openstack/pull/395)) +- Regenerate load-balancer resources ([#388](https://github.com/gtema/openstack/pull/388)) +- Regenerate compute resources ([#389](https://github.com/gtema/openstack/pull/389)) +- Regenerate identity resource ([#387](https://github.com/gtema/openstack/pull/387)) +- Regenerate network resources ([#386](https://github.com/gtema/openstack/pull/386)) + ## [0.6.3](https://github.com/gtema/openstack/compare/openstack_cli-v0.6.2...openstack_cli-v0.6.3) - 2024-07-27 ### Other diff --git a/openstack_cli/Cargo.toml b/openstack_cli/Cargo.toml index da21cd65a..48d31a593 100644 --- a/openstack_cli/Cargo.toml +++ b/openstack_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openstack_cli" -version = "0.6.3" +version = "0.6.4" authors = [ "Artem Goncharov (gtema)", ] @@ -49,7 +49,7 @@ dialoguer = {workspace = true} eyre = { version = "^0.6" } http = { workspace = true } json-patch = { workspace = true } -openstack_sdk = { path="../openstack_sdk", version = "^0.7", default-features = false, features = ["async", "identity"] } +openstack_sdk = { path="../openstack_sdk", version = "^0.8", default-features = false, features = ["async", "identity"] } indicatif = "^0.17" regex = "^1.10" reqwest = { workspace = true } diff --git a/openstack_sdk/CHANGELOG.md b/openstack_sdk/CHANGELOG.md index 9c41eb2ab..bb4afbf1b 100644 --- a/openstack_sdk/CHANGELOG.md +++ b/openstack_sdk/CHANGELOG.md @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.7.0...openstack_sdk-v0.8.0) - 2024-08-01 + +### Added +- New generated content ([#401](https://github.com/gtema/openstack/pull/401)) +- Enable security_groups command ([#393](https://github.com/gtema/openstack/pull/393)) + +### Fixed +- Fix certain network.SG properties ([#398](https://github.com/gtema/openstack/pull/398)) + +### Other +- Regenerate block-storage resources ([#397](https://github.com/gtema/openstack/pull/397)) +- Address some warning of newest rust ([#395](https://github.com/gtema/openstack/pull/395)) +- Regenerate load-balancer resources ([#388](https://github.com/gtema/openstack/pull/388)) +- Regenerate compute resources ([#389](https://github.com/gtema/openstack/pull/389)) +- Regenerate identity resource ([#387](https://github.com/gtema/openstack/pull/387)) +- Regenerate network resources ([#386](https://github.com/gtema/openstack/pull/386)) + ## [0.7.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.6.1...openstack_sdk-v0.7.0) - 2024-07-27 ### Added diff --git a/openstack_sdk/Cargo.toml b/openstack_sdk/Cargo.toml index 5143183b7..a50692315 100644 --- a/openstack_sdk/Cargo.toml +++ b/openstack_sdk/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "openstack_sdk" description = "OpenStack SDK" -version = "0.7.0" +version = "0.8.0" keywords = ["api", "openstack"] categories = ["api-bindings"] authors = ["Artem Goncharov (gtema)"]