Skip to content

Commit 31f6f8b

Browse files
committed
release 0.71.0
1 parent ecb7539 commit 31f6f8b

File tree

10 files changed

+21
-18
lines changed

10 files changed

+21
-18
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
<!-- next-header -->
66
UNRELEASED
77
===================
8-
* see https://github.com/kube-rs/kube-rs/compare/0.70.0...master
8+
* see https://github.com/kube-rs/kube-rs/compare/0.71.0...master
9+
10+
0.71.0 / 2022-04-12
11+
===================
912

1013
[0.70.0](https://github.com/kube-rs/kube-rs/releases/tag/0.70.0) / 2022-03-20
1114
===================

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Select a version of `kube` along with the generated [k8s-openapi](https://github
1717

1818
```toml
1919
[dependencies]
20-
kube = { version = "0.70.0", features = ["runtime", "derive"] }
20+
kube = { version = "0.71.0", features = ["runtime", "derive"] }
2121
k8s-openapi = { version = "0.14.0", features = ["v1_22"] }
2222
```
2323

@@ -156,7 +156,7 @@ Kube has basic support ([with caveats](https://github.com/kube-rs/kube-rs/issues
156156

157157
```toml
158158
[dependencies]
159-
kube = { version = "0.70.0", default-features = false, features = ["client", "rustls-tls"] }
159+
kube = { version = "0.71.0", default-features = false, features = ["client", "rustls-tls"] }
160160
k8s-openapi = { version = "0.14.0", features = ["v1_22"] }
161161
```
162162

e2e/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ path = "dapp.rs"
1717
anyhow = "1.0.44"
1818
env_logger = "0.9.0"
1919
futures = "0.3.17"
20-
kube = { path = "../kube", version = "^0.70.0", default-features = false, features = ["client", "rustls-tls"] }
20+
kube = { path = "../kube", version = "^0.71.0", default-features = false, features = ["client", "rustls-tls"] }
2121
k8s-openapi = { version = "0.14.0", features = ["v1_22"], default-features = false }
2222
log = "0.4.11"
2323
serde_json = "1.0.68"

examples/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ anyhow = "1.0.44"
3131
env_logger = "0.9.0"
3232
futures = "0.3.17"
3333
jsonpath_lib = "0.3.0"
34-
kube = { path = "../kube", version = "^0.70.0", default-features = false, features = ["admission"] }
35-
kube-derive = { path = "../kube-derive", version = "^0.70.0", default-features = false } # only needed to opt out of schema
34+
kube = { path = "../kube", version = "^0.71.0", default-features = false, features = ["admission"] }
35+
kube-derive = { path = "../kube-derive", version = "^0.71.0", default-features = false } # only needed to opt out of schema
3636
k8s-openapi = { version = "0.14.0", default-features = false }
3737
log = "0.4.11"
3838
serde = { version = "1.0.130", features = ["derive"] }

kube-client/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kube-client"
3-
version = "0.70.0"
3+
version = "0.71.0"
44
description = "Kubernetes client"
55
authors = [
66
@@ -56,7 +56,7 @@ rustls = { version = "0.20.3", features = ["dangerous_configuration"], optional
5656
rustls-pemfile = { version = "0.3.0", optional = true }
5757
bytes = { version = "1.1.0", optional = true }
5858
tokio = { version = "1.14.0", features = ["time", "signal", "sync"], optional = true }
59-
kube-core = { path = "../kube-core", version = "=0.70.0" }
59+
kube-core = { path = "../kube-core", version = "=0.71.0" }
6060
jsonpath_lib = { version = "0.3.0", optional = true }
6161
tokio-util = { version = "0.7.0", optional = true, features = ["io", "codec"] }
6262
hyper = { version = "0.14.13", optional = true, features = ["client", "http1", "stream", "tcp"] }

kube-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kube-core"
33
description = "Kube shared types, traits and client-less behavior"
4-
version = "0.70.0"
4+
version = "0.71.0"
55
authors = [
66
77

kube-derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kube-derive"
33
description = "Custom derives for the kube kubernetes crates"
4-
version = "0.70.0"
4+
version = "0.71.0"
55
authors = [
66
77

kube-derive/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Add the `derive` feature to `kube`:
66

77
```toml
88
[dependencies]
9-
kube = { version = "0.70.0", feature = ["derive"] }
9+
kube = { version = "0.71.0", feature = ["derive"] }
1010
```
1111

1212
## Usage

kube-runtime/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kube-runtime"
3-
version = "0.70.0"
3+
version = "0.71.0"
44
description = "Kubernetes futures controller runtime"
55
authors = [
66
"Teo Klestrup Röijezon <[email protected]>",
@@ -21,7 +21,7 @@ rustdoc-args = ["--cfg", "docsrs"]
2121

2222
[dependencies]
2323
futures = "0.3.17"
24-
kube-client = { path = "../kube-client", version = "=0.70.0", default-features = false, features = ["jsonpatch", "client"] }
24+
kube-client = { path = "../kube-client", version = "=0.71.0", default-features = false, features = ["jsonpatch", "client"] }
2525
derivative = "2.1.1"
2626
serde = "1.0.130"
2727
smallvec = "1.7.0"

kube/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kube"
3-
version = "0.70.0"
3+
version = "0.71.0"
44
description = "Kubernetes client and async controller runtime"
55
authors = [
66
@@ -37,10 +37,10 @@ features = ["client", "native-tls", "rustls-tls", "openssl-tls", "derive", "ws",
3737
rustdoc-args = ["--cfg", "docsrs"]
3838

3939
[dependencies]
40-
kube-derive = { path = "../kube-derive", version = "=0.70.0", optional = true }
41-
kube-core = { path = "../kube-core", version = "=0.70.0" }
42-
kube-client = { path = "../kube-client", version = "=0.70.0", default-features = false, optional = true }
43-
kube-runtime = { path = "../kube-runtime", version = "=0.70.0", optional = true}
40+
kube-derive = { path = "../kube-derive", version = "=0.71.0", optional = true }
41+
kube-core = { path = "../kube-core", version = "=0.71.0" }
42+
kube-client = { path = "../kube-client", version = "=0.71.0", default-features = false, optional = true }
43+
kube-runtime = { path = "../kube-runtime", version = "=0.71.0", optional = true}
4444

4545
# Not used directly, but required by resolver 2.0 to ensure that the k8s-openapi dependency
4646
# is considered part of the "deps" graph rather than just the "dev-deps" graph

0 commit comments

Comments
 (0)