Skip to content

Commit b9ccaf8

Browse files
chore: release (#629)
Co-authored-by: gtema-release-plz[bot] <160271069+gtema-release-plz[bot]@users.noreply.github.com>
1 parent 9bfe65e commit b9ccaf8

File tree

7 files changed

+59
-8
lines changed

7 files changed

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

77
## [Unreleased]
88

9+
## [0.8.0](https://github.com/gtema/openstack/compare/openstack_cli-v0.7.3...openstack_cli-v0.8.0) - 2024-10-04
10+
11+
### Added
12+
13+
- Switch from cli-table to comfy-table ([#633](https://github.com/gtema/openstack/pull/633))
14+
- Enable dns zone/recordset commands ([#632](https://github.com/gtema/openstack/pull/632))
15+
- Add dns zone/recordset query parameters ([#634](https://github.com/gtema/openstack/pull/634))
16+
- Start building DNS bindings ([#628](https://github.com/gtema/openstack/pull/628))
17+
- add the ability to specify the configs to load via a builder ([#619](https://github.com/gtema/openstack/pull/619))
18+
- Initialize the DNS service support ([#620](https://github.com/gtema/openstack/pull/620))
19+
- Add user/project/domain query param resolution ([#618](https://github.com/gtema/openstack/pull/618))
20+
- Add support for --os-client-config-file ([#611](https://github.com/gtema/openstack/pull/611))
21+
- Enable remaining compute commands ([#606](https://github.com/gtema/openstack/pull/606))
22+
23+
### Fixed
24+
25+
- Address find when GET return 400 ([#631](https://github.com/gtema/openstack/pull/631))
26+
27+
### Other
28+
29+
- Show full osc command in the doc ([#609](https://github.com/gtema/openstack/pull/609))
30+
- Drop better/human-panic ([#607](https://github.com/gtema/openstack/pull/607))
31+
- Update locked dependencies ([#605](https://github.com/gtema/openstack/pull/605))
32+
- *(deps)* update crate-ci/typos action to v1.25.0 ([#624](https://github.com/gtema/openstack/pull/624))
33+
934
## [0.7.3](https://github.com/gtema/openstack/compare/openstack_cli-v0.7.2...openstack_cli-v0.7.3) - 2024-09-28
1035

1136
### 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.3"
3+
version = "0.8.0"
44
authors = [
55
"Artem Goncharov (gtema)",
66
]
@@ -61,7 +61,7 @@ dialoguer = { workspace = true, features=["fuzzy-select"] }
6161
eyre = { workspace = true }
6262
http = { workspace = true }
6363
json-patch = { workspace = true }
64-
openstack_sdk = { path="../openstack_sdk", version = "^0.11", default-features = false, features = ["async", "identity"] }
64+
openstack_sdk = { path="../openstack_sdk", version = "^0.12", default-features = false, features = ["async", "identity"] }
6565
indicatif = "^0.17"
6666
regex = { workspace = true }
6767
reqwest = { workspace = true }

openstack_sdk/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,25 @@ 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_sdk-v0.11.2...openstack_sdk-v0.12.0) - 2024-10-04
10+
11+
### Added
12+
13+
- Enable dns zone/recordset commands ([#632](https://github.com/gtema/openstack/pull/632))
14+
- Add dns zone/recordset query parameters ([#634](https://github.com/gtema/openstack/pull/634))
15+
- Start building DNS bindings ([#628](https://github.com/gtema/openstack/pull/628))
16+
- add the ability to specify the configs to load via a builder ([#619](https://github.com/gtema/openstack/pull/619))
17+
- Initialize the DNS service support ([#620](https://github.com/gtema/openstack/pull/620))
18+
- Add support for --os-client-config-file ([#611](https://github.com/gtema/openstack/pull/611))
19+
20+
### Fixed
21+
22+
- Address find when GET return 400 ([#631](https://github.com/gtema/openstack/pull/631))
23+
24+
### Other
25+
26+
- *(deps)* update crate-ci/typos action to v1.25.0 ([#624](https://github.com/gtema/openstack/pull/624))
27+
928
## [0.11.2](https://github.com/gtema/openstack/compare/openstack_sdk-v0.11.1...openstack_sdk-v0.11.2) - 2024-09-28
1029

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

openstack_tui/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.1.4](https://github.com/gtema/openstack/compare/openstack_tui-v0.1.3...openstack_tui-v0.1.4) - 2024-10-04
10+
11+
### Other
12+
13+
- *(deps)* Bump unicode-width from 0.1.14 to 0.2.0 ([#615](https://github.com/gtema/openstack/pull/615))
14+
- Drop better/human-panic ([#607](https://github.com/gtema/openstack/pull/607))
15+
916
## [0.1.3](https://github.com/gtema/openstack/compare/openstack_tui-v0.1.2...openstack_tui-v0.1.3) - 2024-09-28
1017

1118
### 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.3"
4+
version = "0.1.4"
55
keywords = ["tui", "openstack"]
66
categories = ["command-line-utilities"]
77
authors = ["Artem Goncharov (gtema)"]
@@ -27,7 +27,7 @@ futures = { workspace = true }
2727
itertools = { workspace = true }
2828
json5 = "^0.4"
2929
lazy_static = "^1.5"
30-
openstack_sdk = { path = "../openstack_sdk", version = "^0.11", default-features = false, features = ["async", "block_storage", "compute", "identity", "image", "network"] }
30+
openstack_sdk = { path = "../openstack_sdk", version = "^0.12", default-features = false, features = ["async", "block_storage", "compute", "identity", "image", "network"] }
3131
pretty_assertions = "^1.4"
3232
ratatui = { version = "^0.28", features = ["serde", "macros"] }
3333
serde = { workspace = true }

0 commit comments

Comments
 (0)