Skip to content

Commit c22eca2

Browse files
chore: release (#504)
Co-authored-by: gtema-release-plz[bot] <160271069+gtema-release-plz[bot]@users.noreply.github.com>
1 parent 129d8b5 commit c22eca2

File tree

7 files changed

+47
-8
lines changed

7 files changed

+47
-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: 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.7.1](https://github.com/gtema/openstack/compare/openstack_cli-v0.7.0...openstack_cli-v0.7.1) - 2024-09-13
10+
11+
### Added
12+
13+
- *(cli)* Interactive cloud connection ([#532](https://github.com/gtema/openstack/pull/532))
14+
- *(cli)* Add identity.credential commands ([#515](https://github.com/gtema/openstack/pull/515))
15+
- *(cli)* Enable identity.auth commands ([#513](https://github.com/gtema/openstack/pull/513))
16+
- Add resource link to domain_id path parameter ([#509](https://github.com/gtema/openstack/pull/509))
17+
- Remove few panics in auth handling ([#508](https://github.com/gtema/openstack/pull/508))
18+
- Add resource link in path parameters ([#507](https://github.com/gtema/openstack/pull/507))
19+
- Add few exceptions for cli ([#506](https://github.com/gtema/openstack/pull/506))
20+
- *(sdk)* Add find_by_name method ([#505](https://github.com/gtema/openstack/pull/505))
21+
922
## [0.7.0](https://github.com/gtema/openstack/compare/openstack_cli-v0.6.5...openstack_cli-v0.7.0) - 2024-08-23
1023

1124
### 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.7.0"
3+
version = "0.7.1"
44
authors = [
55
"Artem Goncharov (gtema)",
66
]
@@ -52,7 +52,7 @@ eyre = { version = "^0.6" }
5252
http = { workspace = true }
5353
human-panic = { workspace = true }
5454
json-patch = { workspace = true }
55-
openstack_sdk = { path="../openstack_sdk", version = "^0.10", default-features = false, features = ["async", "identity"] }
55+
openstack_sdk = { path="../openstack_sdk", version = "^0.11", default-features = false, features = ["async", "identity"] }
5656
indicatif = "^0.17"
5757
regex = "^1.10"
5858
reqwest = { workspace = true }

openstack_sdk/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.11.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.10.0...openstack_sdk-v0.11.0) - 2024-09-13
10+
11+
### Added
12+
13+
- *(cli)* Interactive cloud connection ([#532](https://github.com/gtema/openstack/pull/532))
14+
- Add resource link in path parameters ([#507](https://github.com/gtema/openstack/pull/507))
15+
- *(sdk)* Add find_by_name method ([#505](https://github.com/gtema/openstack/pull/505))
16+
917
## [0.10.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.9.0...openstack_sdk-v0.10.0) - 2024-08-23
1018

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

openstack_tui/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.1.1](https://github.com/gtema/openstack/compare/openstack_tui-v0.1.0...openstack_tui-v0.1.1) - 2024-09-13
10+
11+
### Added
12+
13+
- *(tui)* De-duplicate describe view ([#530](https://github.com/gtema/openstack/pull/530))
14+
- *(tui)* Add action to show server console output ([#529](https://github.com/gtema/openstack/pull/529))
15+
- *(tui)* Add scrolling in the resource describe ([#528](https://github.com/gtema/openstack/pull/528))
16+
- *(tui)* Allow starting tui without selected cloud ([#527](https://github.com/gtema/openstack/pull/527))
17+
- Drop vergen from ostui ([#512](https://github.com/gtema/openstack/pull/512))
18+
19+
### Fixed
20+
21+
- Correct autoreplaced `typos` names ([#485](https://github.com/gtema/openstack/pull/485))
22+
23+
### Other
24+
25+
- Update dependencies ([#499](https://github.com/gtema/openstack/pull/499))
26+
927
## [0.1.0](https://github.com/gtema/openstack/releases/tag/openstack_tui-v0.1.0) - 2024-08-23
1028

1129
### 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.1.0"
4+
version = "0.1.1"
55
keywords = ["tui", "openstack"]
66
categories = ["command-line-utilities"]
77
authors = ["Artem Goncharov (gtema)"]
@@ -29,7 +29,7 @@ human-panic = { workspace = true }
2929
itertools = { workspace = true }
3030
json5 = "^0.4"
3131
lazy_static = "^1.5"
32-
openstack_sdk = { path = "../openstack_sdk", version = "^0.10", default-features = false, features = ["async", "block_storage", "compute", "identity", "image", "network"] }
32+
openstack_sdk = { path = "../openstack_sdk", version = "^0.11", default-features = false, features = ["async", "block_storage", "compute", "identity", "image", "network"] }
3333
pretty_assertions = "^1.4"
3434
ratatui = { version = "^0.28", features = ["serde", "macros"] }
3535
serde = { workspace = true }

0 commit comments

Comments
 (0)