Skip to content

Commit c04539f

Browse files
committed
release 0.77.0
1 parent 4d87ff3 commit c04539f

File tree

10 files changed

+22
-19
lines changed

10 files changed

+22
-19
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/compare/0.76.0...main
8+
* see https://github.com/kube-rs/kube/compare/0.77.0...main
9+
10+
0.77.0 / 2022-12-15
11+
===================
912

1013
[0.76.0](https://github.com/kube-rs/kube/releases/tag/0.76.0) / 2022-10-28
1114
===================

README.md

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

1717
```toml
1818
[dependencies]
19-
kube = { version = "0.76.0", features = ["runtime", "derive"] }
19+
kube = { version = "0.77.0", features = ["runtime", "derive"] }
2020
k8s-openapi = { version = "0.16.0", features = ["v1_25"] }
2121
```
2222

@@ -152,7 +152,7 @@ Kube has basic support ([with caveats](https://github.com/kube-rs/kube/issues?q=
152152

153153
```toml
154154
[dependencies]
155-
kube = { version = "0.76.0", default-features = false, features = ["client", "rustls-tls"] }
155+
kube = { version = "0.77.0", default-features = false, features = ["client", "rustls-tls"] }
156156
k8s-openapi = { version = "0.16.0", features = ["v1_25"] }
157157
```
158158

e2e/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ anyhow = "1.0.44"
2828
tracing = "0.1.36"
2929
tracing-subscriber = "0.3.3"
3030
futures = "0.3.17"
31-
kube = { path = "../kube", version = "^0.76.0", default-features = false, features = ["client", "runtime", "ws", "admission", "gzip"] }
31+
kube = { path = "../kube", version = "^0.77.0", default-features = false, features = ["client", "runtime", "ws", "admission", "gzip"] }
3232
k8s-openapi = { version = "0.16.0", default-features = false }
3333
serde_json = "1.0.68"
3434
tokio = { version = "1.14.0", features = ["full"] }

examples/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ validator = { version = "0.16.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.76.0", default-features = false, features = ["admission"] }
33-
kube-derive = { path = "../kube-derive", version = "^0.76.0", default-features = false } # only needed to opt out of schema
32+
kube = { path = "../kube", version = "^0.77.0", default-features = false, features = ["admission"] }
33+
kube-derive = { path = "../kube-derive", version = "^0.77.0", default-features = false } # only needed to opt out of schema
3434
k8s-openapi = { version = "0.16.0", default-features = false }
3535
serde = { version = "1.0.130", features = ["derive"] }
3636
serde_json = "1.0.68"
@@ -211,4 +211,4 @@ path = "secret_syncer.rs"
211211
[[example]]
212212
name = "pod_shell_crossterm"
213213
path = "pod_shell_crossterm.rs"
214-
required-features = ["ws"]
214+
required-features = ["ws"]

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.76.0"
3+
version = "0.77.0"
44
description = "Kubernetes client"
55
authors = [
66
@@ -53,7 +53,7 @@ rustls = { version = "0.20.3", features = ["dangerous_configuration"], optional
5353
rustls-pemfile = { version = "1.0.0", optional = true }
5454
bytes = { version = "1.1.0", optional = true }
5555
tokio = { version = "1.14.0", features = ["time", "signal", "sync"], optional = true }
56-
kube-core = { path = "../kube-core", version = "=0.76.0" }
56+
kube-core = { path = "../kube-core", version = "=0.77.0" }
5757
jsonpath_lib = { version = "0.3.0", optional = true }
5858
tokio-util = { version = "0.7.0", optional = true, features = ["io", "codec"] }
5959
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.76.0"
4+
version = "0.77.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.76.0"
4+
version = "0.77.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.76.0", feature = ["derive"] }
9+
kube = { version = "0.77.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.76.0"
3+
version = "0.77.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.76.0", default-features = false, features = ["jsonpatch", "client"] }
24+
kube-client = { path = "../kube-client", version = "=0.77.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.76.0"
3+
version = "0.77.0"
44
description = "Kubernetes client and async controller runtime"
55
authors = [
66
@@ -35,10 +35,10 @@ features = ["client", "rustls-tls", "openssl-tls", "derive", "ws", "oauth", "jso
3535
rustdoc-args = ["--cfg", "docsrs"]
3636

3737
[dependencies]
38-
kube-derive = { path = "../kube-derive", version = "=0.76.0", optional = true }
39-
kube-core = { path = "../kube-core", version = "=0.76.0" }
40-
kube-client = { path = "../kube-client", version = "=0.76.0", default-features = false, optional = true }
41-
kube-runtime = { path = "../kube-runtime", version = "=0.76.0", optional = true}
38+
kube-derive = { path = "../kube-derive", version = "=0.77.0", optional = true }
39+
kube-core = { path = "../kube-core", version = "=0.77.0" }
40+
kube-client = { path = "../kube-client", version = "=0.77.0", default-features = false, optional = true }
41+
kube-runtime = { path = "../kube-runtime", version = "=0.77.0", optional = true}
4242

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

0 commit comments

Comments
 (0)