Skip to content

Commit

Permalink
chore: release (#822)
Browse files Browse the repository at this point in the history
Co-authored-by: gtema-release-plz[bot] <160271069+gtema-release-plz[bot]@users.noreply.github.com>
  • Loading branch information
gtema-release-plz[bot] authored Dec 1, 2024
1 parent 5546164 commit d5d7e72
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions openstack_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.2](https://github.com/gtema/openstack/compare/openstack_cli-v0.9.1...openstack_cli-v0.9.2) - 2024-12-01

### Added

- Add pagination QP to octavia resources ([#816](https://github.com/gtema/openstack/pull/816))
- Address clippy suggestions ([#813](https://github.com/gtema/openstack/pull/813))
- Add loadbalancer_id QP to octavia pools ([#809](https://github.com/gtema/openstack/pull/809))
- Add octavia query parameters ([#808](https://github.com/gtema/openstack/pull/808))
- Synchronize generated content ([#806](https://github.com/gtema/openstack/pull/806))

### Fixed

- Auth with project_id and no domain info set ([#815](https://github.com/gtema/openstack/pull/815))

### Other

- Use single quotes for single char ([#814](https://github.com/gtema/openstack/pull/814))
- Address clippy complains ([#812](https://github.com/gtema/openstack/pull/812))

## [0.9.1](https://github.com/gtema/openstack/compare/openstack_cli-v0.9.0...openstack_cli-v0.9.1) - 2024-11-22

### Added
Expand Down
4 changes: 2 additions & 2 deletions openstack_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openstack_cli"
version = "0.9.1"
version = "0.9.2"
authors = [
"Artem Goncharov (gtema)",
]
Expand Down Expand Up @@ -63,7 +63,7 @@ dialoguer = { workspace = true, features=["fuzzy-select"] }
eyre = { workspace = true }
http = { workspace = true }
json-patch = { workspace = true }
openstack_sdk = { path="../openstack_sdk", version = "^0.14", default-features = false, features = ["async", "identity"] }
openstack_sdk = { path="../openstack_sdk", version = "^0.15", default-features = false, features = ["async", "identity"] }
indicatif = "^0.17"
regex = { workspace = true }
reqwest = { workspace = true }
Expand Down
18 changes: 18 additions & 0 deletions openstack_sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.15.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.14.1...openstack_sdk-v0.15.0) - 2024-12-01

### Added

- Add pagination QP to octavia resources ([#816](https://github.com/gtema/openstack/pull/816))
- Address clippy suggestions ([#813](https://github.com/gtema/openstack/pull/813))
- Add loadbalancer_id QP to octavia pools ([#809](https://github.com/gtema/openstack/pull/809))
- Add octavia query parameters ([#808](https://github.com/gtema/openstack/pull/808))
- Synchronize generated content ([#806](https://github.com/gtema/openstack/pull/806))

### Fixed

- Auth with project_id and no domain info set ([#815](https://github.com/gtema/openstack/pull/815))

### Other

- Address clippy complains ([#812](https://github.com/gtema/openstack/pull/812))

## [0.14.1](https://github.com/gtema/openstack/compare/openstack_sdk-v0.14.0...openstack_sdk-v0.14.1) - 2024-11-22

### Added
Expand Down
2 changes: 1 addition & 1 deletion openstack_sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "openstack_sdk"
description = "OpenStack SDK"
version = "0.14.1"
version = "0.15.0"
keywords = ["api", "openstack"]
categories = ["api-bindings"]
authors = ["Artem Goncharov (gtema)"]
Expand Down
15 changes: 15 additions & 0 deletions openstack_tui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.2](https://github.com/gtema/openstack/compare/openstack_tui-v0.9.1...openstack_tui-v0.9.2) - 2024-12-01

### Added

- Add loadbalancer_id QP to octavia pools ([#809](https://github.com/gtema/openstack/pull/809))
- Add octavia query parameters ([#808](https://github.com/gtema/openstack/pull/808))
- Add LB views ([#805](https://github.com/gtema/openstack/pull/805))
- Add few basic DNS views ([#803](https://github.com/gtema/openstack/pull/803))
- Add volume and image deletion ([#798](https://github.com/gtema/openstack/pull/798))

### Other

- Address clippy complains ([#812](https://github.com/gtema/openstack/pull/812))
- Prepare for octavia filters ([#807](https://github.com/gtema/openstack/pull/807))

## [0.9.1](https://github.com/gtema/openstack/compare/openstack_tui-v0.9.0...openstack_tui-v0.9.1) - 2024-11-22

### Added
Expand Down
4 changes: 2 additions & 2 deletions openstack_tui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "openstack_tui"
description = "OpenStack Terminal User interface"
version = "0.9.1"
version = "0.9.2"
keywords = ["tui", "openstack"]
categories = ["command-line-utilities"]
authors = ["Artem Goncharov (gtema)"]
Expand All @@ -27,7 +27,7 @@ futures = { workspace = true }
itertools = { workspace = true }
json5 = "^0.4"
lazy_static = "^1.5"
openstack_sdk = { path = "../openstack_sdk", version = "^0.14", default-features = false, features = ["async", "block_storage", "compute", "dns", "identity", "image", "load_balancer", "network"] }
openstack_sdk = { path = "../openstack_sdk", version = "^0.15", default-features = false, features = ["async", "block_storage", "compute", "dns", "identity", "image", "load_balancer", "network"] }
pretty_assertions = "^1.4"
ratatui = { version = "^0.29", features = ["serde", "macros"] }
serde = { workspace = true }
Expand Down

0 comments on commit d5d7e72

Please sign in to comment.