Skip to content

Commit

Permalink
chore: release (#504)
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 Sep 13, 2024
1 parent 129d8b5 commit c22eca2
Show file tree
Hide file tree
Showing 7 changed files with 47 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.

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

## [Unreleased]

## [0.7.1](https://github.com/gtema/openstack/compare/openstack_cli-v0.7.0...openstack_cli-v0.7.1) - 2024-09-13

### Added

- *(cli)* Interactive cloud connection ([#532](https://github.com/gtema/openstack/pull/532))
- *(cli)* Add identity.credential commands ([#515](https://github.com/gtema/openstack/pull/515))
- *(cli)* Enable identity.auth commands ([#513](https://github.com/gtema/openstack/pull/513))
- Add resource link to domain_id path parameter ([#509](https://github.com/gtema/openstack/pull/509))
- Remove few panics in auth handling ([#508](https://github.com/gtema/openstack/pull/508))
- Add resource link in path parameters ([#507](https://github.com/gtema/openstack/pull/507))
- Add few exceptions for cli ([#506](https://github.com/gtema/openstack/pull/506))
- *(sdk)* Add find_by_name method ([#505](https://github.com/gtema/openstack/pull/505))

## [0.7.0](https://github.com/gtema/openstack/compare/openstack_cli-v0.6.5...openstack_cli-v0.7.0) - 2024-08-23

### 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.7.0"
version = "0.7.1"
authors = [
"Artem Goncharov (gtema)",
]
Expand Down Expand Up @@ -52,7 +52,7 @@ eyre = { version = "^0.6" }
http = { workspace = true }
human-panic = { workspace = true }
json-patch = { workspace = true }
openstack_sdk = { path="../openstack_sdk", version = "^0.10", default-features = false, features = ["async", "identity"] }
openstack_sdk = { path="../openstack_sdk", version = "^0.11", default-features = false, features = ["async", "identity"] }
indicatif = "^0.17"
regex = "^1.10"
reqwest = { workspace = true }
Expand Down
8 changes: 8 additions & 0 deletions openstack_sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.10.0...openstack_sdk-v0.11.0) - 2024-09-13

### Added

- *(cli)* Interactive cloud connection ([#532](https://github.com/gtema/openstack/pull/532))
- Add resource link in path parameters ([#507](https://github.com/gtema/openstack/pull/507))
- *(sdk)* Add find_by_name method ([#505](https://github.com/gtema/openstack/pull/505))

## [0.10.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.9.0...openstack_sdk-v0.10.0) - 2024-08-23

### 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.10.0"
version = "0.11.0"
keywords = ["api", "openstack"]
categories = ["api-bindings"]
authors = ["Artem Goncharov (gtema)"]
Expand Down
18 changes: 18 additions & 0 deletions openstack_tui/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.1.1](https://github.com/gtema/openstack/compare/openstack_tui-v0.1.0...openstack_tui-v0.1.1) - 2024-09-13

### Added

- *(tui)* De-duplicate describe view ([#530](https://github.com/gtema/openstack/pull/530))
- *(tui)* Add action to show server console output ([#529](https://github.com/gtema/openstack/pull/529))
- *(tui)* Add scrolling in the resource describe ([#528](https://github.com/gtema/openstack/pull/528))
- *(tui)* Allow starting tui without selected cloud ([#527](https://github.com/gtema/openstack/pull/527))
- Drop vergen from ostui ([#512](https://github.com/gtema/openstack/pull/512))

### Fixed

- Correct autoreplaced `typos` names ([#485](https://github.com/gtema/openstack/pull/485))

### Other

- Update dependencies ([#499](https://github.com/gtema/openstack/pull/499))

## [0.1.0](https://github.com/gtema/openstack/releases/tag/openstack_tui-v0.1.0) - 2024-08-23

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

0 comments on commit c22eca2

Please sign in to comment.