diff --git a/Cargo.lock b/Cargo.lock index dd299778..b21a50fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2111,7 +2111,7 @@ dependencies = [ [[package]] name = "openstack_cli" -version = "0.9.3" +version = "0.9.4" dependencies = [ "assert_cmd", "bytes", @@ -2144,7 +2144,7 @@ dependencies = [ [[package]] name = "openstack_sdk" -version = "0.16.0" +version = "0.17.0" dependencies = [ "async-trait", "bincode", @@ -2190,7 +2190,7 @@ dependencies = [ [[package]] name = "openstack_tui" -version = "0.9.3" +version = "0.9.4" dependencies = [ "clap", "color-eyre", diff --git a/openstack_cli/CHANGELOG.md b/openstack_cli/CHANGELOG.md index ac7ac939..4b0813f5 100644 --- a/openstack_cli/CHANGELOG.md +++ b/openstack_cli/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.4](https://github.com/gtema/openstack/compare/openstack_cli-v0.9.3...openstack_cli-v0.9.4) - 2024-12-19 + +### Added + +- Adapt few compute result schema changes (#871) +- Update identity schemas (#870) +- Adapt identity schemas (#868) +- Prepare switch to generated tui code (#880) +- Start building parts of TUI (#876) + ## [0.9.3](https://github.com/gtema/openstack/compare/openstack_cli-v0.9.2...openstack_cli-v0.9.3) - 2024-12-13 ### Added diff --git a/openstack_cli/Cargo.toml b/openstack_cli/Cargo.toml index 2f7228b9..8ac6ba2b 100644 --- a/openstack_cli/Cargo.toml +++ b/openstack_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openstack_cli" -version = "0.9.3" +version = "0.9.4" authors = [ "Artem Goncharov (gtema)", ] @@ -63,7 +63,7 @@ dialoguer = { workspace = true, features=["fuzzy-select"] } eyre = { workspace = true } http = { workspace = true } json-patch = { workspace = true } -openstack_sdk = { path="../openstack_sdk", version = "^0.16", default-features = false, features = ["async", "identity"] } +openstack_sdk = { path="../openstack_sdk", version = "^0.17", default-features = false, features = ["async", "identity"] } indicatif = "^0.17" regex = { workspace = true } reqwest = { workspace = true } diff --git a/openstack_sdk/CHANGELOG.md b/openstack_sdk/CHANGELOG.md index 81982317..a2b9911f 100644 --- a/openstack_sdk/CHANGELOG.md +++ b/openstack_sdk/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.16.0...openstack_sdk-v0.17.0) - 2024-12-19 + +### Added + +- Prepare switch to generated tui code (#880) +- Start building parts of TUI (#876) +- Adapt few compute result schema changes (#871) +- Update identity schemas (#870) +- Adapt identity schemas (#868) + ## [0.16.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.15.0...openstack_sdk-v0.16.0) - 2024-12-13 ### Added diff --git a/openstack_sdk/Cargo.toml b/openstack_sdk/Cargo.toml index 1bea9edd..21b2f549 100644 --- a/openstack_sdk/Cargo.toml +++ b/openstack_sdk/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "openstack_sdk" description = "OpenStack SDK" -version = "0.16.0" +version = "0.17.0" keywords = ["api", "openstack"] categories = ["api-bindings"] authors = ["Artem Goncharov (gtema)"] diff --git a/openstack_tui/CHANGELOG.md b/openstack_tui/CHANGELOG.md index 3a2ce6fa..32f760bf 100644 --- a/openstack_tui/CHANGELOG.md +++ b/openstack_tui/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.4](https://github.com/gtema/openstack/compare/openstack_tui-v0.9.3...openstack_tui-v0.9.4) - 2024-12-19 + +### Added + +- Prepare switch to generated tui code (#880) +- Start building parts of TUI (#876) + +### Fixed + +- Fix few tui generated code issues (#877) + ## [0.9.3](https://github.com/gtema/openstack/compare/openstack_tui-v0.9.2...openstack_tui-v0.9.3) - 2024-12-13 ### Added diff --git a/openstack_tui/Cargo.toml b/openstack_tui/Cargo.toml index ed134ad1..24f282f6 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.9.3" +version = "0.9.4" keywords = ["tui", "openstack"] categories = ["command-line-utilities"] authors = ["Artem Goncharov (gtema)"] @@ -28,7 +28,7 @@ futures = { workspace = true } itertools = { workspace = true } json5 = "^0.4" lazy_static = "^1.5" -openstack_sdk = { path = "../openstack_sdk", version = "^0.16", default-features = false, features = ["async", "block_storage", "compute", "dns", "identity", "image", "load_balancer", "network"] } +openstack_sdk = { path = "../openstack_sdk", version = "^0.17", default-features = false, features = ["async", "block_storage", "compute", "dns", "identity", "image", "load_balancer", "network"] } pretty_assertions = "^1.4" ratatui = { version = "^0.29", features = ["serde", "macros"] } serde = { workspace = true }