From 5dce83b7f1882e2f09d7e25cc5928c995caaf904 Mon Sep 17 00:00:00 2001 From: clux Date: Wed, 3 Apr 2024 17:13:08 +0100 Subject: [PATCH] release 0.90.0 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- README.md | 4 ++-- e2e/Cargo.toml | 2 +- examples/Cargo.toml | 4 ++-- kube-client/Cargo.toml | 2 +- kube-derive/README.md | 2 +- kube-runtime/Cargo.toml | 2 +- kube/Cargo.toml | 8 ++++---- 9 files changed, 17 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94c5f83a0..eacf97f03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,10 @@ UNRELEASED =================== - * see https://github.com/kube-rs/kube/compare/0.89.0...main + * see https://github.com/kube-rs/kube/compare/0.90.0...main + +0.90.0 / 2024-04-03 +=================== [0.89.0](https://github.com/kube-rs/kube/releases/tag/0.89.0) / 2024-03-26 =================== diff --git a/Cargo.toml b/Cargo.toml index 53613e60a..01de4b142 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ members = [ ] [workspace.package] -version = "0.89.0" +version = "0.90.0" authors = [ "clux ", "Natalie Klestrup Röijezon ", diff --git a/README.md b/README.md index e5a51c8a9..8aa2f5e79 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Select a version of `kube` along with the generated [k8s-openapi](https://github ```toml [dependencies] -kube = { version = "0.89.0", features = ["runtime", "derive"] } +kube = { version = "0.90.0", features = ["runtime", "derive"] } k8s-openapi = { version = "0.21.1", features = ["latest"] } ``` @@ -152,7 +152,7 @@ By default [rustls](https://github.com/ctz/rustls) is used for TLS, but `openssl ```toml [dependencies] -kube = { version = "0.89.0", default-features = false, features = ["client", "openssl-tls"] } +kube = { version = "0.90.0", default-features = false, features = ["client", "openssl-tls"] } k8s-openapi = { version = "0.21.0", features = ["latest"] } ``` diff --git a/e2e/Cargo.toml b/e2e/Cargo.toml index 41f430d76..864de3223 100644 --- a/e2e/Cargo.toml +++ b/e2e/Cargo.toml @@ -28,7 +28,7 @@ anyhow.workspace = true tracing.workspace = true tracing-subscriber.workspace = true futures.workspace = true -kube = { path = "../kube", version = "^0.89.0", default-features = false, features = ["client", "runtime", "ws", "admission", "gzip"] } +kube = { path = "../kube", version = "^0.90.0", default-features = false, features = ["client", "runtime", "ws", "admission", "gzip"] } k8s-openapi.workspace = true serde_json.workspace = true tokio = { workspace = true, features = ["full"] } diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 22a3db7ab..b3b71250f 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -28,8 +28,8 @@ garde = { version = "0.18.0", default-features = false, features = ["derive"] } anyhow.workspace = true futures = { workspace = true, features = ["async-await"] } jsonpath-rust.workspace = true -kube = { path = "../kube", version = "^0.89.0", default-features = false, features = ["admission"] } -kube-derive = { path = "../kube-derive", version = "^0.89.0", default-features = false } # only needed to opt out of schema +kube = { path = "../kube", version = "^0.90.0", default-features = false, features = ["admission"] } +kube-derive = { path = "../kube-derive", version = "^0.90.0", default-features = false } # only needed to opt out of schema k8s-openapi.workspace = true serde = { workspace = true, features = ["derive"] } serde_json.workspace = true diff --git a/kube-client/Cargo.toml b/kube-client/Cargo.toml index e480066c8..7e9b7b1cf 100644 --- a/kube-client/Cargo.toml +++ b/kube-client/Cargo.toml @@ -57,7 +57,7 @@ rustls = { workspace = true, optional = true } rustls-pemfile = { workspace = true, optional = true } bytes = { workspace = true, optional = true } tokio = { workspace = true, features = ["time", "signal", "sync"], optional = true } -kube-core = { path = "../kube-core", version = "=0.89.0" } +kube-core = { path = "../kube-core", version = "=0.90.0" } jsonpath-rust = { workspace = true, optional = true } tokio-util = { workspace = true, features = ["io", "codec"], optional = true } hyper = { workspace = true, features = ["client", "http1"], optional = true } diff --git a/kube-derive/README.md b/kube-derive/README.md index cae3e4d89..2f7b8c3b4 100644 --- a/kube-derive/README.md +++ b/kube-derive/README.md @@ -6,7 +6,7 @@ Add the `derive` feature to `kube`: ```toml [dependencies] -kube = { version = "0.89.0", feature = ["derive"] } +kube = { version = "0.90.0", feature = ["derive"] } ``` ## Usage diff --git a/kube-runtime/Cargo.toml b/kube-runtime/Cargo.toml index 934427bf7..51e235557 100644 --- a/kube-runtime/Cargo.toml +++ b/kube-runtime/Cargo.toml @@ -31,7 +31,7 @@ rust.unsafe_code = "forbid" [dependencies] futures.workspace = true -kube-client = { path = "../kube-client", version = "=0.89.0", default-features = false, features = ["jsonpatch", "client"] } +kube-client = { path = "../kube-client", version = "=0.90.0", default-features = false, features = ["jsonpatch", "client"] } derivative.workspace = true serde.workspace = true smallvec.workspace = true diff --git a/kube/Cargo.toml b/kube/Cargo.toml index 55e85bd41..e32cc4409 100644 --- a/kube/Cargo.toml +++ b/kube/Cargo.toml @@ -45,10 +45,10 @@ rustdoc-args = ["--cfg", "docsrs"] workspace = true [dependencies] -kube-derive = { path = "../kube-derive", version = "=0.89.0", optional = true } -kube-core = { path = "../kube-core", version = "=0.89.0" } -kube-client = { path = "../kube-client", version = "=0.89.0", default-features = false, optional = true } -kube-runtime = { path = "../kube-runtime", version = "=0.89.0", optional = true} +kube-derive = { path = "../kube-derive", version = "=0.90.0", optional = true } +kube-core = { path = "../kube-core", version = "=0.90.0" } +kube-client = { path = "../kube-client", version = "=0.90.0", default-features = false, optional = true } +kube-runtime = { path = "../kube-runtime", version = "=0.90.0", optional = true} # Not used directly, but required by resolver 2.0 to ensure that the k8s-openapi dependency # is considered part of the "deps" graph rather than just the "dev-deps" graph k8s-openapi.workspace = true