Skip to content

Commit

Permalink
v0.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnavion committed Feb 17, 2024
1 parent 4d8b7cf commit ef3183d
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 5 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# v0.21.1 (2024-02-17)

## k8s-openapi

- BUGFIX: Fix `schemars::JsonSchema` impl of `k8s_openapi::apimachinery::pkg::util::intstr::IntOrString` to be in line with what Kubernetes expects of int-or-string fields in CRDs.

Corresponding Kubernetes API server versions:

- v1.24.17
- v1.25.16
- v1.26.14
- v1.27.11
- v1.28.7
- v1.29.2

## k8s-openapi-codegen-common

- BUGFIX: See the bugfix mentioned above.

## k8s-openapi-derive

- No changes except to bump the `k8s-openapi-codegen-common` dependency to the new version.

---

# v0.21.0 (2024-01-19)

## k8s-openapi
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "k8s-openapi"
version = "0.21.0"
version = "0.21.1"
license = "Apache-2.0"
authors = ["Arnav Singh <me@arnavion.dev>"]
categories = ["api-bindings", "web-programming::http-client"]
Expand All @@ -25,7 +25,7 @@ include = [
# to enumerate all env vars looking for one with `DEP_K8S_OPENAPI_` prefix and `_VERSION` suffix, instead of looking it up by its whole name.
#
# See https://github.com/rust-lang/cargo/issues/3544 for being able to pass metadata to downstream without setting this key.
links = "k8s-openapi-0.21.0"
links = "k8s-openapi-0.21.1"

[dependencies]
base64 = { version = "0.21", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion k8s-openapi-codegen-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "k8s-openapi-codegen-common"
version = "0.21.0"
version = "0.21.1"
license = "Apache-2.0"
authors = ["Arnav Singh <me@arnavion.dev>"]
categories = ["api-bindings", "web-programming::http-client"]
Expand Down
4 changes: 2 additions & 2 deletions k8s-openapi-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "k8s-openapi-derive"
version = "0.21.0"
version = "0.21.1"
license = "Apache-2.0"
authors = ["Arnav Singh <me@arnavion.dev>"]
categories = ["api-bindings", "web-programming::http-client"]
Expand All @@ -18,7 +18,7 @@ include = [
]

[dependencies]
k8s-openapi-codegen-common = { version = "=0.21.0", path = "../k8s-openapi-codegen-common" }
k8s-openapi-codegen-common = { version = "=0.21.1", path = "../k8s-openapi-codegen-common" }
proc-macro2 = { version = "1", default-features = false, features = ["proc-macro"] }
quote = { version = "1", default-features = false }
syn = { version = "2", default-features = false, features = [
Expand Down

0 comments on commit ef3183d

Please sign in to comment.