Skip to content

Commit 503e9b5

Browse files
chore: release
1 parent 023425e commit 503e9b5

File tree

9 files changed

+60
-12
lines changed

9 files changed

+60
-12
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openstack_cli/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.13.0](https://github.com/gtema/openstack/compare/openstack_cli-v0.12.0...openstack_cli-v0.13.0) - 2025-05-13
10+
11+
### Added
12+
13+
- Add table-arrangement output option ([#1225](https://github.com/gtema/openstack/pull/1225))
14+
- Adapt default attributes for network.port listing ([#1217](https://github.com/gtema/openstack/pull/1217))
15+
- Add cascade QP for delete octavia loadbalancer ([#1204](https://github.com/gtema/openstack/pull/1204))
16+
17+
### Other
18+
19+
- Fix typos in parameter names ([#1203](https://github.com/gtema/openstack/pull/1203))
20+
- Initialize mock testing ([#1202](https://github.com/gtema/openstack/pull/1202))
21+
922
## [0.12.0](https://github.com/gtema/openstack/compare/openstack_cli-v0.11.1...openstack_cli-v0.12.0) - 2025-05-05
1023

1124
### Added

openstack_cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openstack_cli"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = [
55
"Artem Goncharov (gtema)",
66
]
@@ -66,8 +66,8 @@ dialoguer = { workspace = true, features=["fuzzy-select"] }
6666
eyre = { workspace = true }
6767
http = { workspace = true }
6868
json-patch = { workspace = true }
69-
openstack_sdk = { path="../openstack_sdk", version = "^0.21", default-features = false, features = ["async", "identity"] }
70-
openstack_types = { path="../openstack_types", version = "^0.21" }
69+
openstack_sdk = { path="../openstack_sdk", version = "^0.22", default-features = false, features = ["async", "identity"] }
70+
openstack_types = { path="../openstack_types", version = "^0.22" }
7171
indicatif = "^0.17"
7272
regex = { workspace = true }
7373
reqwest = { workspace = true }

openstack_sdk/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.22.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.21.0...openstack_sdk-v0.22.0) - 2025-05-13
10+
11+
### Added
12+
13+
- Add cascade QP for delete octavia loadbalancer ([#1204](https://github.com/gtema/openstack/pull/1204))
14+
15+
### Other
16+
17+
- Fix typos in parameter names ([#1203](https://github.com/gtema/openstack/pull/1203))
18+
- Initialize mock testing ([#1202](https://github.com/gtema/openstack/pull/1202))
19+
920
## [0.21.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.20.1...openstack_sdk-v0.21.0) - 2025-05-05
1021

1122
### Added

openstack_sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "openstack_sdk"
33
description = "OpenStack SDK"
4-
version = "0.21.0"
4+
version = "0.22.0"
55
keywords = ["api", "openstack"]
66
categories = ["api-bindings"]
77
authors = ["Artem Goncharov (gtema)"]

openstack_tui/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.13.0](https://github.com/gtema/openstack/compare/openstack_tui-v0.12.0...openstack_tui-v0.13.0) - 2025-05-13
10+
11+
### Added
12+
13+
- Add cascade QP for delete octavia loadbalancer ([#1204](https://github.com/gtema/openstack/pull/1204))
14+
915
## [0.12.0](https://github.com/gtema/openstack/compare/openstack_tui-v0.11.1...openstack_tui-v0.12.0) - 2025-05-05
1016

1117
### Added

openstack_tui/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "openstack_tui"
33
description = "OpenStack Terminal User interface"
4-
version = "0.12.0"
4+
version = "0.13.0"
55
keywords = ["tui", "openstack"]
66
categories = ["command-line-utilities"]
77
authors = ["Artem Goncharov (gtema)"]
@@ -33,8 +33,8 @@ itertools = { workspace = true }
3333
json5 = "^0.4"
3434
lazy_static = "^1.5"
3535
open.workspace = true
36-
openstack_sdk = { path = "../openstack_sdk", version = "^0.21", default-features = false, features = ["async", "block_storage", "compute", "dns", "identity", "image", "load_balancer", "network"] }
37-
openstack_types = { path = "../openstack_types", version = "^0.21" }
36+
openstack_sdk = { path = "../openstack_sdk", version = "^0.22", default-features = false, features = ["async", "block_storage", "compute", "dns", "identity", "image", "load_balancer", "network"] }
37+
openstack_types = { path = "../openstack_types", version = "^0.22" }
3838
pretty_assertions = "^1.4"
3939
ratatui = { version = "^0.29", features = ["serde", "macros"] }
4040
serde = { workspace = true }

openstack_types/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.22.0](https://github.com/gtema/openstack/compare/openstack_types-v0.21.0...openstack_types-v0.22.0) - 2025-05-13
11+
12+
### Added
13+
14+
- Add cascade QP for delete octavia loadbalancer ([#1204](https://github.com/gtema/openstack/pull/1204))
15+
- Include openapi spec into the openstack_types ([#1200](https://github.com/gtema/openstack/pull/1200))
16+
17+
### Fixed
18+
19+
- Adjust fip.port_details schema ([#1211](https://github.com/gtema/openstack/pull/1211))
20+
- Fix server schema ([#1210](https://github.com/gtema/openstack/pull/1210))
21+
- Fix fip.port_details schema ([#1209](https://github.com/gtema/openstack/pull/1209))
22+
23+
### Other
24+
25+
- Fix typos in parameter names ([#1203](https://github.com/gtema/openstack/pull/1203))
26+
- Initialize mock testing ([#1202](https://github.com/gtema/openstack/pull/1202))
27+
1028
## [0.21.0](https://github.com/gtema/openstack/compare/openstack_types-v0.20.1...openstack_types-v0.21.0) - 2025-05-05
1129

1230
### Added

openstack_types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "openstack_types"
33
description = "OpenStack API Types"
4-
version = "0.21.0"
4+
version = "0.22.0"
55
keywords = ["api", "openstack"]
66
categories = ["api-bindings"]
77
authors = ["Artem Goncharov (gtema)"]

0 commit comments

Comments
 (0)