Skip to content

Commit 22bd877

Browse files
committed
release 0.73.0
1 parent 8dcd5c0 commit 22bd877

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.72.0...master
8+
* see https://github.com/kube-rs/kube-rs/compare/0.73.0...master
9+
10+
0.73.0 / 2022-05-23
11+
===================
912

1013
[0.72.0](https://github.com/kube-rs/kube-rs/releases/tag/0.72.0) / 2022-05-13
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.72.0", features = ["runtime", "derive"] }
20+
kube = { version = "0.73.0", features = ["runtime", "derive"] }
2121
k8s-openapi = { version = "0.15.0", features = ["v1_24"] }
2222
```
2323

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

154154
```toml
155155
[dependencies]
156-
kube = { version = "0.72.0", default-features = false, features = ["client", "rustls-tls"] }
156+
kube = { version = "0.73.0", default-features = false, features = ["client", "rustls-tls"] }
157157
k8s-openapi = { version = "0.15.0", features = ["v1_24"] }
158158
```
159159

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.72.0", default-features = false, features = ["client", "rustls-tls"] }
20+
kube = { path = "../kube", version = "^0.73.0", default-features = false, features = ["client", "rustls-tls"] }
2121
k8s-openapi = { version = "0.15.0", features = ["v1_24"], 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
@@ -29,8 +29,8 @@ validator = { version = "0.15.0", features = ["derive"] }
2929
anyhow = "1.0.44"
3030
futures = "0.3.17"
3131
jsonpath_lib = "0.3.0"
32-
kube = { path = "../kube", version = "^0.72.0", default-features = false, features = ["admission"] }
33-
kube-derive = { path = "../kube-derive", version = "^0.72.0", default-features = false } # only needed to opt out of schema
32+
kube = { path = "../kube", version = "^0.73.0", default-features = false, features = ["admission"] }
33+
kube-derive = { path = "../kube-derive", version = "^0.73.0", default-features = false } # only needed to opt out of schema
3434
k8s-openapi = { version = "0.15.0", default-features = false }
3535
serde = { version = "1.0.130", features = ["derive"] }
3636
serde_json = "1.0.68"

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.72.0"
3+
version = "0.73.0"
44
description = "Kubernetes client"
55
authors = [
66
@@ -55,7 +55,7 @@ rustls = { version = "0.20.3", features = ["dangerous_configuration"], optional
5555
rustls-pemfile = { version = "1.0.0", optional = true }
5656
bytes = { version = "1.1.0", optional = true }
5757
tokio = { version = "1.14.0", features = ["time", "signal", "sync"], optional = true }
58-
kube-core = { path = "../kube-core", version = "=0.72.0" }
58+
kube-core = { path = "../kube-core", version = "=0.73.0" }
5959
jsonpath_lib = { version = "0.3.0", optional = true }
6060
tokio-util = { version = "0.7.0", optional = true, features = ["io", "codec"] }
6161
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.72.0"
4+
version = "0.73.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.72.0"
4+
version = "0.73.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.72.0", feature = ["derive"] }
9+
kube = { version = "0.73.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.72.0"
3+
version = "0.73.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.72.0", default-features = false, features = ["jsonpatch", "client"] }
24+
kube-client = { path = "../kube-client", version = "=0.73.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.72.0"
3+
version = "0.73.0"
44
description = "Kubernetes client and async controller runtime"
55
authors = [
66
@@ -36,10 +36,10 @@ features = ["client", "native-tls", "rustls-tls", "openssl-tls", "derive", "ws",
3636
rustdoc-args = ["--cfg", "docsrs"]
3737

3838
[dependencies]
39-
kube-derive = { path = "../kube-derive", version = "=0.72.0", optional = true }
40-
kube-core = { path = "../kube-core", version = "=0.72.0" }
41-
kube-client = { path = "../kube-client", version = "=0.72.0", default-features = false, optional = true }
42-
kube-runtime = { path = "../kube-runtime", version = "=0.72.0", optional = true}
39+
kube-derive = { path = "../kube-derive", version = "=0.73.0", optional = true }
40+
kube-core = { path = "../kube-core", version = "=0.73.0" }
41+
kube-client = { path = "../kube-client", version = "=0.73.0", default-features = false, optional = true }
42+
kube-runtime = { path = "../kube-runtime", version = "=0.73.0", optional = true}
4343

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

0 commit comments

Comments
 (0)