Skip to content

Commit

Permalink
Merge pull request #156 from jvanz/v1.31-bump
Browse files Browse the repository at this point in the history
feat: bumps k8s API server version.
  • Loading branch information
viccuad authored Oct 30, 2024
2 parents 0a994fe + 4e6ee0a commit 4291749
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .envrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export K8S_OPENAPI_ENABLED_VERSION=1.30
export K8S_OPENAPI_ENABLED_VERSION=1.31
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
# This is required because commands like `cargo check` do not
# read the cargo development dependencies.
# See https://github.com/Arnavion/k8s-openapi/issues/132
K8S_OPENAPI_ENABLED_VERSION: "1.30"
K8S_OPENAPI_ENABLED_VERSION: "1.31"

jobs:
ci:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
# This is required because commands like `cargo check` do not
# read the cargo development dependencies.
# See https://github.com/Arnavion/k8s-openapi/issues/132
K8S_OPENAPI_ENABLED_VERSION: "1.30"
K8S_OPENAPI_ENABLED_VERSION: "1.31"

jobs:
check:
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "kubewarden-policy-sdk"
description = "Kubewarden Policy SDK for the Rust language"
repository = "https://github.com/kubewarden/policy-sdk-rust"
version = "0.11.1"
version = "0.11.2"
authors = [
"Kubewarden developers <[email protected]>",
"Flavio Castelli <[email protected]>",
Expand All @@ -17,7 +17,7 @@ default = ["cluster-context"]
cluster-context = ["k8s-openapi"]

[package.metadata.docs.rs]
features = ["k8s-openapi/v1_30"]
features = ["k8s-openapi/v1_31"]

[dependencies]
anyhow = "1.0"
Expand Down Expand Up @@ -55,6 +55,6 @@ assert-json-diff = "2.0.2"
mockall = "0.13.0"
serial_test = "3.1.1"
k8s-openapi = { version = "0.23.0", default-features = false, features = [
"v1_30",
"v1_31",
] }
jsonpath_lib = "0.3.0"
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBE_API_VERSION?=1.30
KUBE_API_VERSION?=1.31

.PHONY: fmt
fmt:
Expand Down

0 comments on commit 4291749

Please sign in to comment.