Skip to content

Commit 7720832

Browse files
chore: Release (#150)
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b5db3f9 commit 7720832

File tree

5 files changed

+69
-5
lines changed

5 files changed

+69
-5
lines changed

Cargo.lock

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

77
## [Unreleased]
88

9+
## [0.5.0](https://github.com/gtema/openstack/compare/openstack_cli-v0.4.0...openstack_cli-v0.5.0) - 2024-05-07
10+
11+
### Added
12+
- Add volume.qos-spec resources ([#196](https://github.com/gtema/openstack/pull/196))
13+
- Add volume.az resource ([#194](https://github.com/gtema/openstack/pull/194))
14+
- Add volume.cluster resource ([#192](https://github.com/gtema/openstack/pull/192))
15+
- Add cinder volume_transfer resources ([#187](https://github.com/gtema/openstack/pull/187))
16+
- Add volume.manageable_XXX resources ([#175](https://github.com/gtema/openstack/pull/175))
17+
- Add volume.default-types ([#173](https://github.com/gtema/openstack/pull/173))
18+
- Add volume.extension ([#167](https://github.com/gtema/openstack/pull/167))
19+
- add volume.host
20+
- add volume.group-snapshots
21+
- add volume.snapshot
22+
- implement volume.attachment
23+
- add volume.limit
24+
- add volume.message
25+
- add volume.resource-filters implementation
26+
- force MV discovery for Compute and Volume
27+
28+
### Fixed
29+
- allow linter warning
30+
31+
### Other
32+
- *(docs)* Add minor specifications into the readme ([#195](https://github.com/gtema/openstack/pull/195))
33+
- *(test)* Introduce features ([#176](https://github.com/gtema/openstack/pull/176))
34+
- add volume.group-type schemas
35+
- Merge pull request [#153](https://github.com/gtema/openstack/pull/153) from gtema/gtema-patch-2
36+
- Update documentation
37+
- *(lint)* Apply fresh clippy suggestions ([#193](https://github.com/gtema/openstack/pull/193))
38+
- *(qa)* Initialize fuzzing ([#191](https://github.com/gtema/openstack/pull/191))
39+
- *(ci)* Update dependencies ([#190](https://github.com/gtema/openstack/pull/190))
40+
- fix code scanning warning
41+
- *(deps)* bump hyper from 1.2.0 to 1.3.0
42+
943
## [0.4.0](https://github.com/gtema/openstack/compare/openstack_cli-v0.3.0...openstack_cli-v0.4.0) - 2024-04-05
1044

1145
### 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.4.0"
3+
version = "0.5.0"
44
authors = [
55
"Artem Goncharov (gtema)",
66
]
@@ -47,7 +47,7 @@ cli-table = "^0.4"
4747
dialoguer = {workspace = true}
4848
http = { workspace = true }
4949
json-patch = { workspace = true }
50-
openstack_sdk = { path="../openstack_sdk", version = "^0.4", default-features = false, features = ["async", "identity"] }
50+
openstack_sdk = { path="../openstack_sdk", version = "^0.5", default-features = false, features = ["async", "identity"] }
5151
indicatif = "^0.17"
5252
regex = "^1.10"
5353
reqwest = { workspace = true }

openstack_sdk/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.5.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.4.0...openstack_sdk-v0.5.0) - 2024-05-07
10+
11+
### Added
12+
- Add volume.qos-spec resources ([#196](https://github.com/gtema/openstack/pull/196))
13+
- Add volume.az resource ([#194](https://github.com/gtema/openstack/pull/194))
14+
- Add volume.cluster resource ([#192](https://github.com/gtema/openstack/pull/192))
15+
- Add cinder volume_transfer resources ([#187](https://github.com/gtema/openstack/pull/187))
16+
- Add volume.manageable_XXX resources ([#175](https://github.com/gtema/openstack/pull/175))
17+
- Add volume.default-types ([#173](https://github.com/gtema/openstack/pull/173))
18+
- Add volume.extension ([#167](https://github.com/gtema/openstack/pull/167))
19+
- add volume.host
20+
- add volume.group-snapshots
21+
- add volume.snapshot
22+
- implement volume.attachment
23+
- add volume.limit
24+
- add volume.message
25+
- add volume.resource-filters implementation
26+
27+
### Other
28+
- *(docs)* Add minor specifications into the readme ([#195](https://github.com/gtema/openstack/pull/195))
29+
- *(lint)* Apply fresh clippy suggestions ([#193](https://github.com/gtema/openstack/pull/193))
30+
- *(qa)* Initialize fuzzing ([#191](https://github.com/gtema/openstack/pull/191))
31+
- *(ci)* Update dependencies ([#190](https://github.com/gtema/openstack/pull/190))
32+
- *(test)* Introduce features ([#176](https://github.com/gtema/openstack/pull/176))
33+
- add volume.group-type schemas
34+
- fix code scanning warning
35+
- Merge pull request [#153](https://github.com/gtema/openstack/pull/153) from gtema/gtema-patch-2
36+
- Update documentation
37+
- *(deps)* bump hyper from 1.2.0 to 1.3.0
38+
939
## [0.4.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.3.0...openstack_sdk-v0.4.0) - 2024-04-05
1040

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

0 commit comments

Comments
 (0)