From 64e9ba3f6e0a56d1f199fc2f23cecf5a932c776a Mon Sep 17 00:00:00 2001 From: clux Date: Mon, 14 Feb 2022 13:28:19 +0000 Subject: [PATCH] release 0.69.0 --- CHANGELOG.md | 5 ++++- README.md | 4 ++-- e2e/Cargo.toml | 2 +- examples/Cargo.toml | 4 ++-- kube-client/Cargo.toml | 4 ++-- kube-core/Cargo.toml | 2 +- kube-derive/Cargo.toml | 2 +- kube-derive/README.md | 2 +- kube-runtime/Cargo.toml | 4 ++-- kube/Cargo.toml | 10 +++++----- 10 files changed, 21 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46a8aefc6..7691efe08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,10 @@ UNRELEASED =================== - * see https://github.com/kube-rs/kube-rs/compare/0.68.0...master + * see https://github.com/kube-rs/kube-rs/compare/0.69.0...master + +0.69.0 / 2022-02-14 +=================== [0.68.0](https://github.com/kube-rs/kube-rs/releases/tag/0.68.0) / 2022-02-01 =================== diff --git a/README.md b/README.md index 2171d7ac2..a53071223 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Select a version of `kube` along with the generated [k8s-openapi](https://github ```toml [dependencies] -kube = { version = "0.68.0", features = ["runtime", "derive"] } +kube = { version = "0.69.0", features = ["runtime", "derive"] } k8s-openapi = { version = "0.14.0", features = ["v1_22"] } ``` @@ -156,7 +156,7 @@ Kube has basic support ([with caveats](https://github.com/kube-rs/kube-rs/issues ```toml [dependencies] -kube = { version = "0.68.0", default-features = false, features = ["client", "rustls-tls"] } +kube = { version = "0.69.0", default-features = false, features = ["client", "rustls-tls"] } k8s-openapi = { version = "0.14.0", features = ["v1_22"] } ``` diff --git a/e2e/Cargo.toml b/e2e/Cargo.toml index 2a29a3d74..f30d4f900 100644 --- a/e2e/Cargo.toml +++ b/e2e/Cargo.toml @@ -17,7 +17,7 @@ path = "dapp.rs" anyhow = "1.0.44" env_logger = "0.9.0" futures = "0.3.17" -kube = { path = "../kube", version = "^0.68.0", default-features = false, features = ["client", "rustls-tls"] } +kube = { path = "../kube", version = "^0.69.0", default-features = false, features = ["client", "rustls-tls"] } k8s-openapi = { version = "0.14.0", features = ["v1_22"], default-features = false } log = "0.4.11" serde_json = "1.0.68" diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 61829fd56..0a25b6943 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -31,8 +31,8 @@ anyhow = "1.0.44" env_logger = "0.9.0" futures = "0.3.17" jsonpath_lib = "0.3.0" -kube = { path = "../kube", version = "^0.68.0", default-features = false, features = ["admission"] } -kube-derive = { path = "../kube-derive", version = "^0.68.0", default-features = false } # only needed to opt out of schema +kube = { path = "../kube", version = "^0.69.0", default-features = false, features = ["admission"] } +kube-derive = { path = "../kube-derive", version = "^0.69.0", default-features = false } # only needed to opt out of schema k8s-openapi = { version = "0.14.0", default-features = false } log = "0.4.11" serde = { version = "1.0.130", features = ["derive"] } diff --git a/kube-client/Cargo.toml b/kube-client/Cargo.toml index 6cba40a90..d8c92df68 100644 --- a/kube-client/Cargo.toml +++ b/kube-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kube-client" -version = "0.68.0" +version = "0.69.0" description = "Kubernetes client" authors = [ "clux ", @@ -56,7 +56,7 @@ rustls = { version = "0.20.1", features = ["dangerous_configuration"], optional rustls-pemfile = { version = "0.2.1", optional = true } bytes = { version = "1.1.0", optional = true } tokio = { version = "1.14.0", features = ["time", "signal", "sync"], optional = true } -kube-core = { path = "../kube-core", version = "^0.68.0"} +kube-core = { path = "../kube-core", version = "^0.69.0"} jsonpath_lib = { version = "0.3.0", optional = true } tokio-util = { version = "0.6.8", optional = true, features = ["io", "codec"] } hyper = { version = "0.14.13", optional = true, features = ["client", "http1", "stream", "tcp"] } diff --git a/kube-core/Cargo.toml b/kube-core/Cargo.toml index cca1842f4..5c2dd6ab8 100644 --- a/kube-core/Cargo.toml +++ b/kube-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kube-core" description = "Kube shared types, traits and client-less behavior" -version = "0.68.0" +version = "0.69.0" authors = [ "clux ", "kazk ", diff --git a/kube-derive/Cargo.toml b/kube-derive/Cargo.toml index 19c8490d0..67c12b27c 100644 --- a/kube-derive/Cargo.toml +++ b/kube-derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kube-derive" description = "Custom derives for the kube kubernetes crates" -version = "0.68.0" +version = "0.69.0" authors = [ "clux ", "kazk ", diff --git a/kube-derive/README.md b/kube-derive/README.md index 57f495794..76c38db14 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.68.0", feature = ["derive"] } +kube = { version = "0.69.0", feature = ["derive"] } ``` ## Usage diff --git a/kube-runtime/Cargo.toml b/kube-runtime/Cargo.toml index 672babdbc..b3fbf59c3 100644 --- a/kube-runtime/Cargo.toml +++ b/kube-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kube-runtime" -version = "0.68.0" +version = "0.69.0" description = "Kubernetes futures controller runtime" authors = [ "Teo Klestrup Röijezon ", @@ -21,7 +21,7 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] futures = "0.3.17" -kube-client = { path = "../kube-client", version = "^0.68.0", default-features = false, features = ["jsonpatch", "client"] } +kube-client = { path = "../kube-client", version = "^0.69.0", default-features = false, features = ["jsonpatch", "client"] } derivative = "2.1.1" serde = "1.0.130" smallvec = "1.7.0" diff --git a/kube/Cargo.toml b/kube/Cargo.toml index 34d257e10..a8b4d7c13 100644 --- a/kube/Cargo.toml +++ b/kube/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kube" -version = "0.68.0" +version = "0.69.0" description = "Kubernetes client and async controller runtime" authors = [ "clux ", @@ -37,10 +37,10 @@ features = ["client", "native-tls", "rustls-tls", "openssl-tls", "derive", "ws", rustdoc-args = ["--cfg", "docsrs"] [dependencies] -kube-derive = { path = "../kube-derive", version = "^0.68.0", optional = true } -kube-core = { path = "../kube-core", version = "^0.68.0"} -kube-client = { path = "../kube-client", version = "^0.68.0", default-features = false, optional = true } -kube-runtime = { path = "../kube-runtime", version = "^0.68.0", optional = true} +kube-derive = { path = "../kube-derive", version = "^0.69.0", optional = true } +kube-core = { path = "../kube-core", version = "^0.69.0"} +kube-client = { path = "../kube-client", version = "^0.69.0", default-features = false, optional = true } +kube-runtime = { path = "../kube-runtime", version = "^0.69.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