Skip to content

Commit

Permalink
v0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnavion committed Jan 20, 2024
1 parent 7103d72 commit 5337d70
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 10 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,30 @@
# v0.21.0 (2024-01-19)

## k8s-openapi

- BREAKING CHANGE: Added support for Kubernetes 1.29 under the `v1_29` feature.

- BREAKING CHANGE: Dropped support for Kubernetes 1.22 and 1.23.

Corresponding Kubernetes API server versions:

- v1.24.17
- v1.25.16
- v1.26.13
- v1.27.10
- v1.28.6
- v1.29.1

## k8s-openapi-codegen-common

- No changes.

## k8s-openapi-derive

- No changes.

---

# v0.20.0 (2023-09-07)

## k8s-openapi
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Expand Up @@ -111,8 +111,8 @@ K8S_RECORD=1 ./test.sh all run-tests
cargo rustdoc --features 'latest' -- -A 'rustdoc::bare_urls' -Z unstable-options --enable-index-page &&
CARGO_TARGET_DIR="$(realpath ./target)" cargo rustdoc --manifest-path ./k8s-openapi-codegen-common/Cargo.toml -- -Z unstable-options --enable-index-page &&
CARGO_TARGET_DIR="$(realpath ./target)" cargo rustdoc --manifest-path ./k8s-openapi-derive/Cargo.toml -- -Z unstable-options --enable-index-page &&
rm -rf ../k8s-openapi-gh-pages/v0.20.x &&
cp -R ./target/doc ../k8s-openapi-gh-pages/v0.20.x
rm -rf ../k8s-openapi-gh-pages/v0.21.x &&
cp -R ./target/doc ../k8s-openapi-gh-pages/v0.21.x
```

1. `../k8s-openapi-gh-pages/index.html`: Add new anchor if this is a new major release
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "k8s-openapi"
version = "0.20.0"
version = "0.21.0"
license = "Apache-2.0"
authors = ["Arnav Singh <me@arnavion.dev>"]
categories = ["api-bindings", "web-programming::http-client"]
description = "Bindings for the Kubernetes client API"
documentation = "https://arnavion.github.io/k8s-openapi/v0.20.x/k8s_openapi/"
documentation = "https://arnavion.github.io/k8s-openapi/v0.21.x/k8s_openapi/"
edition = "2021"
keywords = ["client", "kubernetes", "k8s", "http"]
readme = "README.md"
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.20.0"
links = "k8s-openapi-0.21.0"

[dependencies]
base64 = { version = "0.21", default-features = false, features = [
Expand Down
4 changes: 2 additions & 2 deletions k8s-openapi-codegen-common/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "k8s-openapi-codegen-common"
version = "0.20.0"
version = "0.21.0"
license = "Apache-2.0"
authors = ["Arnav Singh <me@arnavion.dev>"]
categories = ["api-bindings", "web-programming::http-client"]
description = "Common code for the k8s-openapi code generator and k8s-openapi-derive"
documentation = "https://arnavion.github.io/k8s-openapi/v0.20.x/k8s_openapi_codegen_common/"
documentation = "https://arnavion.github.io/k8s-openapi/v0.21.x/k8s_openapi_codegen_common/"
edition = "2021"
keywords = ["client", "kubernetes", "k8s", "http"]
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions k8s-openapi-derive/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "k8s-openapi-derive"
version = "0.20.0"
version = "0.21.0"
license = "Apache-2.0"
authors = ["Arnav Singh <me@arnavion.dev>"]
categories = ["api-bindings", "web-programming::http-client"]
description = "Custom derives for the Kubernetes client API"
documentation = "https://arnavion.github.io/k8s-openapi/v0.20.x/k8s_openapi_derive/"
documentation = "https://arnavion.github.io/k8s-openapi/v0.21.x/k8s_openapi_derive/"
edition = "2021"
keywords = ["client", "kubernetes", "k8s", "http"]
readme = "README.md"
Expand All @@ -18,7 +18,7 @@ include = [
]

[dependencies]
k8s-openapi-codegen-common = { version = "=0.20.0", path = "../k8s-openapi-codegen-common" }
k8s-openapi-codegen-common = { version = "=0.21.0", 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 5337d70

Please sign in to comment.