Skip to content

Commit 6f9c242

Browse files
chore: release
1 parent 5e13e18 commit 6f9c242

File tree

9 files changed

+113
-12
lines changed

9 files changed

+113
-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: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.12.0](https://github.com/gtema/openstack/compare/openstack_cli-v0.11.1...openstack_cli-v0.12.0) - 2025-05-03
10+
11+
### Added
12+
13+
- Update default cli output configuration ([#1184](https://github.com/gtema/openstack/pull/1184))
14+
- Start populating resource_key in the CLI ([#1179](https://github.com/gtema/openstack/pull/1179))
15+
- Introduce CLI configuration ([#1177](https://github.com/gtema/openstack/pull/1177))
16+
- Add network.router.set command ([#1174](https://github.com/gtema/openstack/pull/1174))
17+
- Wrap deserialization error into dedicated error ([#1172](https://github.com/gtema/openstack/pull/1172))
18+
- Introduce macros for skipping tests ([#1170](https://github.com/gtema/openstack/pull/1170))
19+
- Switch tui and cli to openstack_types ([#1148](https://github.com/gtema/openstack/pull/1148))
20+
- Use dedicated deser helpers in response types ([#1142](https://github.com/gtema/openstack/pull/1142))
21+
- Start building openstack_tui crate ([#1132](https://github.com/gtema/openstack/pull/1132))
22+
- Add basic error reporting helper ([#1173](https://github.com/gtema/openstack/pull/1173))
23+
- Switch cli to openstack_types ([#1158](https://github.com/gtema/openstack/pull/1158))
24+
25+
### Fixed
26+
27+
- Fix few nova response schemas ([#1175](https://github.com/gtema/openstack/pull/1175))
28+
29+
### Other
30+
31+
- Address linter comments ([#1186](https://github.com/gtema/openstack/pull/1186))
32+
- Add functional crud tests for compute keypairs ([#1176](https://github.com/gtema/openstack/pull/1176))
33+
- Separate structable into separate repository ([#1145](https://github.com/gtema/openstack/pull/1145))
34+
- Add trace message of config file being used ([#1185](https://github.com/gtema/openstack/pull/1185))
35+
- Cleanup unused code ([#1168](https://github.com/gtema/openstack/pull/1168))
36+
937
## [0.11.1](https://github.com/gtema/openstack/compare/openstack_cli-v0.11.0...openstack_cli-v0.11.1) - 2025-04-05
1038

1139
### 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.11.1"
3+
version = "0.12.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.20", default-features = false, features = ["async", "identity"] }
70-
openstack_types = { path="../openstack_types", version = "^0.20" }
69+
openstack_sdk = { path="../openstack_sdk", version = "^0.21", default-features = false, features = ["async", "identity"] }
70+
openstack_types = { path="../openstack_types", version = "^0.21" }
7171
indicatif = "^0.17"
7272
regex = { workspace = true }
7373
reqwest = { workspace = true }

openstack_sdk/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.21.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.20.1...openstack_sdk-v0.21.0) - 2025-05-03
10+
11+
### Added
12+
13+
- Add basic error reporting helper ([#1173](https://github.com/gtema/openstack/pull/1173))
14+
- Switch cli to openstack_types ([#1158](https://github.com/gtema/openstack/pull/1158))
15+
- Switch tui and cli to openstack_types ([#1148](https://github.com/gtema/openstack/pull/1148))
16+
- Use dedicated deser helpers in response types ([#1142](https://github.com/gtema/openstack/pull/1142))
17+
18+
### Fixed
19+
20+
- Fix few nova response schemas ([#1175](https://github.com/gtema/openstack/pull/1175))
21+
22+
### Other
23+
24+
- Add trace message of config file being used ([#1185](https://github.com/gtema/openstack/pull/1185))
25+
- Cleanup unused code ([#1168](https://github.com/gtema/openstack/pull/1168))
26+
927
## [0.20.1](https://github.com/gtema/openstack/compare/openstack_sdk-v0.20.0...openstack_sdk-v0.20.1) - 2025-04-05
1028

1129
### 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.20.1"
4+
version = "0.21.0"
55
keywords = ["api", "openstack"]
66
categories = ["api-bindings"]
77
authors = ["Artem Goncharov (gtema)"]

openstack_tui/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.12.0](https://github.com/gtema/openstack/compare/openstack_tui-v0.11.1...openstack_tui-v0.12.0) - 2025-05-03
10+
11+
### Added
12+
13+
- Add basic error reporting helper ([#1173](https://github.com/gtema/openstack/pull/1173))
14+
- Wrap deserialization error into dedicated error ([#1172](https://github.com/gtema/openstack/pull/1172))
15+
- Add instance_uuid to the instance action schema ([#1160](https://github.com/gtema/openstack/pull/1160))
16+
- Switch cli to openstack_types ([#1158](https://github.com/gtema/openstack/pull/1158))
17+
- Switch tui and cli to openstack_types ([#1148](https://github.com/gtema/openstack/pull/1148))
18+
19+
### Fixed
20+
21+
- Fix few nova response schemas ([#1175](https://github.com/gtema/openstack/pull/1175))
22+
23+
### Other
24+
25+
- Cleanup unused code ([#1168](https://github.com/gtema/openstack/pull/1168))
26+
- Separate structable into separate repository ([#1145](https://github.com/gtema/openstack/pull/1145))
27+
- *(deps)* Bump crossterm from 0.28.1 to 0.29.0 ([#1128](https://github.com/gtema/openstack/pull/1128))
28+
929
## [0.11.1](https://github.com/gtema/openstack/compare/openstack_tui-v0.11.0...openstack_tui-v0.11.1) - 2025-04-05
1030

1131
### 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.11.1"
4+
version = "0.12.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.20", default-features = false, features = ["async", "block_storage", "compute", "dns", "identity", "image", "load_balancer", "network"] }
37-
openstack_types = { path = "../openstack_types", version = "^0.20" }
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" }
3838
pretty_assertions = "^1.4"
3939
ratatui = { version = "^0.29", features = ["serde", "macros"] }
4040
serde = { workspace = true }

openstack_types/CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.21.0](https://github.com/gtema/openstack/compare/openstack_types-v0.20.1...openstack_types-v0.21.0) - 2025-05-03
11+
12+
### Added
13+
14+
- Add instance_uuid to the instance action schema ([#1160](https://github.com/gtema/openstack/pull/1160))
15+
- Fix BS response schemas ([#1159](https://github.com/gtema/openstack/pull/1159))
16+
- Switch cli to openstack_types ([#1158](https://github.com/gtema/openstack/pull/1158))
17+
- Switch tui and cli to openstack_types ([#1148](https://github.com/gtema/openstack/pull/1148))
18+
- Adapt openstack_types to structable_derive 0.2 ([#1147](https://github.com/gtema/openstack/pull/1147))
19+
- Use dedicated deser helpers in response types ([#1142](https://github.com/gtema/openstack/pull/1142))
20+
- Allow serialization of the Enum based status ([#1141](https://github.com/gtema/openstack/pull/1141))
21+
- Sort types enum kinds alphabetically ([#1140](https://github.com/gtema/openstack/pull/1140))
22+
- Make StructTable serialize the property ([#1135](https://github.com/gtema/openstack/pull/1135))
23+
24+
### Fixed
25+
26+
- Fix few nova response schemas ([#1175](https://github.com/gtema/openstack/pull/1175))
27+
- Fix security-group.rule.port_range_xx type ([#1171](https://github.com/gtema/openstack/pull/1171))
28+
- Add new deser_num_str and deser_bool_str ([#1136](https://github.com/gtema/openstack/pull/1136))
29+
30+
### Other
31+
32+
- Separate structable into separate repository ([#1145](https://github.com/gtema/openstack/pull/1145))
33+
- Fix linter for openstack_types again ([#1139](https://github.com/gtema/openstack/pull/1139))
34+
- Fix linter complains introduced in last commit ([#1138](https://github.com/gtema/openstack/pull/1138))
35+
- Add deser for Option<xxx> ([#1137](https://github.com/gtema/openstack/pull/1137))

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.20.1"
4+
version = "0.21.0"
55
keywords = ["api", "openstack"]
66
categories = ["api-bindings"]
77
authors = ["Artem Goncharov (gtema)"]

0 commit comments

Comments
 (0)