Skip to content

Commit d37a0a5

Browse files
chore: release
1 parent d62ea64 commit d37a0a5

File tree

7 files changed

+40
-8
lines changed

7 files changed

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

77
## [Unreleased]
88

9+
## [0.9.4](https://github.com/gtema/openstack/compare/openstack_cli-v0.9.3...openstack_cli-v0.9.4) - 2025-01-13
10+
11+
### Added
12+
13+
- Adapt few compute result schema changes (#871)
14+
- Update identity schemas (#870)
15+
- Adapt identity schemas (#868)
16+
- Prepare switch to generated tui code (#880)
17+
- Start building parts of TUI (#876)
18+
919
## [0.9.3](https://github.com/gtema/openstack/compare/openstack_cli-v0.9.2...openstack_cli-v0.9.3) - 2024-12-13
1020

1121
### 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.3"
3+
version = "0.9.4"
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.16", default-features = false, features = ["async", "identity"] }
66+
openstack_sdk = { path="../openstack_sdk", version = "^0.17", default-features = false, features = ["async", "identity"] }
6767
indicatif = "^0.17"
6868
regex = { workspace = true }
6969
reqwest = { workspace = true }

openstack_sdk/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.17.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.16.0...openstack_sdk-v0.17.0) - 2025-01-13
10+
11+
### Added
12+
13+
- Prepare switch to generated tui code (#880)
14+
- Start building parts of TUI (#876)
15+
- Adapt few compute result schema changes (#871)
16+
- Update identity schemas (#870)
17+
- Adapt identity schemas (#868)
18+
919
## [0.16.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.15.0...openstack_sdk-v0.16.0) - 2024-12-13
1020

1121
### 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.16.0"
4+
version = "0.17.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.4](https://github.com/gtema/openstack/compare/openstack_tui-v0.9.3...openstack_tui-v0.9.4) - 2025-01-13
10+
11+
### Added
12+
13+
- *(tui)* Implement views configuration (#905)
14+
- Prepare switch to generated tui code (#880)
15+
- Start building parts of TUI (#876)
16+
17+
### Fixed
18+
19+
- Fix few tui generated code issues (#877)
20+
921
## [0.9.3](https://github.com/gtema/openstack/compare/openstack_tui-v0.9.2...openstack_tui-v0.9.3) - 2024-12-13
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.3"
4+
version = "0.9.4"
55
keywords = ["tui", "openstack"]
66
categories = ["command-line-utilities"]
77
authors = ["Artem Goncharov (gtema)"]
@@ -28,7 +28,7 @@ futures = { workspace = true }
2828
itertools = { workspace = true }
2929
json5 = "^0.4"
3030
lazy_static = "^1.5"
31-
openstack_sdk = { path = "../openstack_sdk", version = "^0.16", default-features = false, features = ["async", "block_storage", "compute", "dns", "identity", "image", "load_balancer", "network"] }
31+
openstack_sdk = { path = "../openstack_sdk", version = "^0.17", default-features = false, features = ["async", "block_storage", "compute", "dns", "identity", "image", "load_balancer", "network"] }
3232
pretty_assertions = "^1.4"
3333
ratatui = { version = "^0.29", features = ["serde", "macros"] }
3434
serde = { workspace = true }

0 commit comments

Comments
 (0)