Skip to content

Commit bfb7fcf

Browse files
chore: release
1 parent f209257 commit bfb7fcf

File tree

9 files changed

+73
-8
lines changed

9 files changed

+73
-8
lines changed

Cargo.lock

Lines changed: 4 additions & 4 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: 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.12.2](https://github.com/gtema/openstack/compare/openstack_cli-v0.12.1...openstack_cli-v0.12.2) - 2025-05-28
10+
11+
### Added
12+
13+
- Add cli hints support ([#1267](https://github.com/gtema/openstack/pull/1267))
14+
- Implement json pointer extractor for the column ([#1265](https://github.com/gtema/openstack/pull/1265))
15+
- Add output column constraints ([#1259](https://github.com/gtema/openstack/pull/1259))
16+
- Prepare cli config for column magic ([#1246](https://github.com/gtema/openstack/pull/1246))
17+
- Make openapi specs reproducible ([#1244](https://github.com/gtema/openstack/pull/1244))
18+
19+
### Fixed
20+
21+
- Fix dns qp marker parameter name ([#1268](https://github.com/gtema/openstack/pull/1268))
22+
23+
### Other
24+
25+
- Add global clippy config ([#1252](https://github.com/gtema/openstack/pull/1252))
26+
927
## [0.12.1](https://github.com/gtema/openstack/compare/openstack_cli-v0.12.0...openstack_cli-v0.12.1) - 2025-05-18
1028

1129
### Added

openstack_cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openstack_cli"
3-
version = "0.12.1"
3+
version = "0.12.2"
44
authors = [
55
"Artem Goncharov (gtema)",
66
]

openstack_sdk/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.21.2](https://github.com/gtema/openstack/compare/openstack_sdk-v0.21.1...openstack_sdk-v0.21.2) - 2025-05-28
10+
11+
### Added
12+
13+
- Make openapi specs reproducible ([#1244](https://github.com/gtema/openstack/pull/1244))
14+
15+
### Fixed
16+
17+
- Fix dns qp marker parameter name ([#1268](https://github.com/gtema/openstack/pull/1268))
18+
19+
### Other
20+
21+
- Add global clippy config ([#1252](https://github.com/gtema/openstack/pull/1252))
22+
923
## [0.21.1](https://github.com/gtema/openstack/compare/openstack_sdk-v0.21.0...openstack_sdk-v0.21.1) - 2025-05-18
1024

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

openstack_tui/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.12.2](https://github.com/gtema/openstack/compare/openstack_tui-v0.12.1...openstack_tui-v0.12.2) - 2025-05-28
10+
11+
### Added
12+
13+
- Align config format with cli ([#1266](https://github.com/gtema/openstack/pull/1266))
14+
- Make openapi specs reproducible ([#1244](https://github.com/gtema/openstack/pull/1244))
15+
16+
### Fixed
17+
18+
- Fix dns qp marker parameter name ([#1268](https://github.com/gtema/openstack/pull/1268))
19+
20+
### Other
21+
22+
- Add global clippy config ([#1252](https://github.com/gtema/openstack/pull/1252))
23+
924
## [0.12.1](https://github.com/gtema/openstack/compare/openstack_tui-v0.12.0...openstack_tui-v0.12.1) - 2025-05-18
1025

1126
### Added

openstack_tui/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_tui"
33
description = "OpenStack Terminal User interface"
4-
version = "0.12.1"
4+
version = "0.12.2"
55
keywords = ["tui", "openstack"]
66
categories = ["command-line-utilities"]
77
authors = ["Artem Goncharov (gtema)"]

openstack_types/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.21.2](https://github.com/gtema/openstack/compare/openstack_types-v0.21.1...openstack_types-v0.21.2) - 2025-05-28
11+
12+
### Added
13+
14+
- Make openapi specs reproducible ([#1244](https://github.com/gtema/openstack/pull/1244))
15+
16+
### Fixed
17+
18+
- Fix dns qp marker parameter name ([#1268](https://github.com/gtema/openstack/pull/1268))
19+
- Fix type conversion of const bool ([#1258](https://github.com/gtema/openstack/pull/1258))
20+
- Ensure swift bytes are positive integers ([#1255](https://github.com/gtema/openstack/pull/1255))
21+
- Add missed serde macros in types ([#1254](https://github.com/gtema/openstack/pull/1254))
22+
23+
### Other
24+
25+
- Add global clippy config ([#1252](https://github.com/gtema/openstack/pull/1252))
26+
- Fix lint for openstack_types tests ([#1250](https://github.com/gtema/openstack/pull/1250))
27+
1028
## [0.21.1](https://github.com/gtema/openstack/compare/openstack_types-v0.21.0...openstack_types-v0.21.1) - 2025-05-18
1129

1230
### Added

openstack_types/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_types"
33
description = "OpenStack API Types"
4-
version = "0.21.1"
4+
version = "0.21.2"
55
keywords = ["api", "openstack"]
66
categories = ["api-bindings"]
77
authors = ["Artem Goncharov (gtema)"]

0 commit comments

Comments
 (0)