From 1a7cda08717893ac3bdf3a8d6c2819dcc42d4ef7 Mon Sep 17 00:00:00 2001 From: "gtema-release-plz[bot]" <160271069+gtema-release-plz[bot]@users.noreply.github.com> Date: Fri, 11 Oct 2024 16:47:25 +0200 Subject: [PATCH] chore: release (#659) * chore: release * chore: Update readme links --------- Co-authored-by: gtema-release-plz[bot] <160271069+gtema-release-plz[bot]@users.noreply.github.com> Co-authored-by: Artem Goncharov --- Cargo.lock | 6 +++--- README.md | 4 ++-- openstack_cli/CHANGELOG.md | 14 ++++++++++++++ openstack_cli/Cargo.toml | 4 ++-- openstack_sdk/CHANGELOG.md | 13 +++++++++++++ openstack_sdk/Cargo.toml | 2 +- openstack_tui/CHANGELOG.md | 6 ++++++ openstack_tui/Cargo.toml | 4 ++-- 8 files changed, 43 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 614e9a010..f69842c2c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1929,7 +1929,7 @@ dependencies = [ [[package]] name = "openstack_cli" -version = "0.8.0" +version = "0.8.1" dependencies = [ "assert_cmd", "bytes", @@ -1962,7 +1962,7 @@ dependencies = [ [[package]] name = "openstack_sdk" -version = "0.12.0" +version = "0.13.0" dependencies = [ "async-trait", "bincode", @@ -2008,7 +2008,7 @@ dependencies = [ [[package]] name = "openstack_tui" -version = "0.1.4" +version = "0.1.5" dependencies = [ "clap", "color-eyre", diff --git a/README.md b/README.md index 4d040df53..e699cf53e 100644 --- a/README.md +++ b/README.md @@ -85,13 +85,13 @@ with a dedicated installer in every release and can be retrieved with the following command: ```console -curl --proto '=https' --tlsv1.2 -LsSf https://github.com/gtema/openstack/releases/download/openstack_cli-v0.7.3/openstack_cli-installer.sh | sh +curl --proto '=https' --tlsv1.2 -LsSf https://github.com/gtema/openstack/releases/download/openstack_cli-v0.8.1/openstack_cli-installer.sh | sh ``` TUI can be installed similarly: ```console -curl --proto '=https' --tlsv1.2 -LsSf https://github.com/gtema/openstack/releases/download/openstack_tui-v0.1.3/openstack_tui-installer.sh | sh +curl --proto '=https' --tlsv1.2 -LsSf https://github.com/gtema/openstack/releases/download/openstack_tui-v0.1.5/openstack_tui-installer.sh | sh ``` diff --git a/openstack_cli/CHANGELOG.md b/openstack_cli/CHANGELOG.md index 6e345c4c6..8c464bdfd 100644 --- a/openstack_cli/CHANGELOG.md +++ b/openstack_cli/CHANGELOG.md @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.1](https://github.com/gtema/openstack/compare/openstack_cli-v0.8.0...openstack_cli-v0.8.1) - 2024-10-11 + +### Added + +- Fix dns schema mapping names ([#648](https://github.com/gtema/openstack/pull/648)) +- Regenerate identity.project ([#646](https://github.com/gtema/openstack/pull/646)) +- Enable few more DNS commands ([#645](https://github.com/gtema/openstack/pull/645)) +- Extend Designate schemas ([#642](https://github.com/gtema/openstack/pull/642)) +- Update identity.credentials schema ([#643](https://github.com/gtema/openstack/pull/643)) + +### Fixed + +- Fix dns recordset schema ([#647](https://github.com/gtema/openstack/pull/647)) + ## [0.8.0](https://github.com/gtema/openstack/compare/openstack_cli-v0.7.3...openstack_cli-v0.8.0) - 2024-10-04 ### Added diff --git a/openstack_cli/Cargo.toml b/openstack_cli/Cargo.toml index d6d0e80c4..6202e7f71 100644 --- a/openstack_cli/Cargo.toml +++ b/openstack_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openstack_cli" -version = "0.8.0" +version = "0.8.1" authors = [ "Artem Goncharov (gtema)", ] @@ -61,7 +61,7 @@ dialoguer = { workspace = true, features=["fuzzy-select"] } eyre = { workspace = true } http = { workspace = true } json-patch = { workspace = true } -openstack_sdk = { path="../openstack_sdk", version = "^0.12", default-features = false, features = ["async", "identity"] } +openstack_sdk = { path="../openstack_sdk", version = "^0.13", 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 12f894198..81bf64424 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.13.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.12.0...openstack_sdk-v0.13.0) - 2024-10-11 + +### Added + +- Fix dns schema mapping names ([#648](https://github.com/gtema/openstack/pull/648)) +- Regenerate identity.project ([#646](https://github.com/gtema/openstack/pull/646)) +- Extend Designate schemas ([#642](https://github.com/gtema/openstack/pull/642)) +- Update identity.credentials schema ([#643](https://github.com/gtema/openstack/pull/643)) + +### Fixed + +- Fix dns recordset schema ([#647](https://github.com/gtema/openstack/pull/647)) + ## [0.12.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.11.2...openstack_sdk-v0.12.0) - 2024-10-04 ### Added diff --git a/openstack_sdk/Cargo.toml b/openstack_sdk/Cargo.toml index d7e63591b..335be5a5a 100644 --- a/openstack_sdk/Cargo.toml +++ b/openstack_sdk/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "openstack_sdk" description = "OpenStack SDK" -version = "0.12.0" +version = "0.13.0" keywords = ["api", "openstack"] categories = ["api-bindings"] authors = ["Artem Goncharov (gtema)"] diff --git a/openstack_tui/CHANGELOG.md b/openstack_tui/CHANGELOG.md index 5393c6035..e44589b7c 100644 --- a/openstack_tui/CHANGELOG.md +++ b/openstack_tui/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.5](https://github.com/gtema/openstack/compare/openstack_tui-v0.1.4...openstack_tui-v0.1.5) - 2024-10-11 + +### Other + +- update Cargo.lock dependencies + ## [0.1.4](https://github.com/gtema/openstack/compare/openstack_tui-v0.1.3...openstack_tui-v0.1.4) - 2024-10-04 ### Other diff --git a/openstack_tui/Cargo.toml b/openstack_tui/Cargo.toml index 8dd44626c..e5b638c10 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.4" +version = "0.1.5" keywords = ["tui", "openstack"] categories = ["command-line-utilities"] authors = ["Artem Goncharov (gtema)"] @@ -27,7 +27,7 @@ futures = { workspace = true } itertools = { workspace = true } json5 = "^0.4" lazy_static = "^1.5" -openstack_sdk = { path = "../openstack_sdk", version = "^0.12", default-features = false, features = ["async", "block_storage", "compute", "identity", "image", "network"] } +openstack_sdk = { path = "../openstack_sdk", version = "^0.13", default-features = false, features = ["async", "block_storage", "compute", "identity", "image", "network"] } pretty_assertions = "^1.4" ratatui = { version = "^0.28", features = ["serde", "macros"] } serde = { workspace = true }