Skip to content

Commit aef7762

Browse files
chore: release
1 parent 0e1ed46 commit aef7762

File tree

7 files changed

+43
-8
lines changed

7 files changed

+43
-8
lines changed

Cargo.lock

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

77
## [Unreleased]
88

9+
## [0.9.5](https://github.com/gtema/openstack/compare/openstack_cli-v0.9.4...openstack_cli-v0.9.5) - 2025-02-02
10+
11+
### Added
12+
13+
- Synchronize identity schemas (#945)
14+
- Add get_auth_state method to obtain auth status (#937)
15+
16+
### Other
17+
18+
- Split tui into lib and bin (#947)
19+
- Update dependencies (#940)
20+
921
## [0.9.4](https://github.com/gtema/openstack/compare/openstack_cli-v0.9.3...openstack_cli-v0.9.4) - 2025-01-17
1022

1123
### Added

openstack_cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openstack_cli"
3-
version = "0.9.4"
3+
version = "0.9.5"
44
authors = [
55
"Artem Goncharov (gtema)",
66
]
@@ -63,7 +63,7 @@ dialoguer = { workspace = true, features=["fuzzy-select"] }
6363
eyre = { workspace = true }
6464
http = { workspace = true }
6565
json-patch = { workspace = true }
66-
openstack_sdk = { path="../openstack_sdk", version = "^0.17", default-features = false, features = ["async", "identity"] }
66+
openstack_sdk = { path="../openstack_sdk", version = "^0.18", default-features = false, features = ["async", "identity"] }
6767
indicatif = "^0.17"
6868
regex = { workspace = true }
6969
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.18.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.17.0...openstack_sdk-v0.18.0) - 2025-02-02
10+
11+
### Added
12+
13+
- Synchronize identity schemas (#945)
14+
- Add get_auth_state method to obtain auth status (#937)
15+
16+
### Other
17+
18+
- Update dependencies (#940)
19+
920
## [0.17.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.16.0...openstack_sdk-v0.17.0) - 2025-01-17
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.17.0"
4+
version = "0.18.0"
55
keywords = ["api", "openstack"]
66
categories = ["api-bindings"]
77
authors = ["Artem Goncharov (gtema)"]

openstack_tui/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.9.5](https://github.com/gtema/openstack/compare/openstack_tui-v0.9.4...openstack_tui-v0.9.5) - 2025-02-02
10+
11+
### Added
12+
13+
- Generate TUI response structure (#946)
14+
- Synchronize identity schemas (#945)
15+
16+
### Other
17+
18+
- Split tui into lib and bin (#947)
19+
- Remove deny unused in tui (#943)
20+
921
## [0.9.4](https://github.com/gtema/openstack/compare/openstack_tui-v0.9.3...openstack_tui-v0.9.4) - 2025-01-17
1022

1123
### Added

openstack_tui/Cargo.toml

Lines changed: 2 additions & 2 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.9.4"
4+
version = "0.9.5"
55
keywords = ["tui", "openstack"]
66
categories = ["command-line-utilities"]
77
authors = ["Artem Goncharov (gtema)"]
@@ -31,7 +31,7 @@ futures = { workspace = true }
3131
itertools = { workspace = true }
3232
json5 = "^0.4"
3333
lazy_static = "^1.5"
34-
openstack_sdk = { path = "../openstack_sdk", version = "^0.17", default-features = false, features = ["async", "block_storage", "compute", "dns", "identity", "image", "load_balancer", "network"] }
34+
openstack_sdk = { path = "../openstack_sdk", version = "^0.18", default-features = false, features = ["async", "block_storage", "compute", "dns", "identity", "image", "load_balancer", "network"] }
3535
pretty_assertions = "^1.4"
3636
ratatui = { version = "^0.29", features = ["serde", "macros"] }
3737
serde = { workspace = true }

0 commit comments

Comments
 (0)