Skip to content

Commit 76944b4

Browse files
committed
release 0.94.2
1 parent 84985b4 commit 76944b4

File tree

9 files changed

+17
-14
lines changed

9 files changed

+17
-14
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.94.1...main
8+
* see https://github.com/kube-rs/kube/compare/0.94.2...main
9+
10+
0.94.2 / 2024-09-13
11+
===================
912

1013
[0.94.1](https://github.com/kube-rs/kube/releases/tag/0.94.1) / 2024-09-09
1114
===================

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ members = [
1414
]
1515

1616
[workspace.package]
17-
version = "0.94.1"
17+
version = "0.94.2"
1818
authors = [
1919
"clux <sszynrae@gmail.com>",
2020
"Natalie Klestrup Röijezon <nat@nullable.se>",

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.94.1", features = ["runtime", "derive"] }
19+
kube = { version = "0.94.2", features = ["runtime", "derive"] }
2020
k8s-openapi = { version = "0.22.0", features = ["latest"] }
2121
```
2222

@@ -155,7 +155,7 @@ By default [rustls](https://github.com/rustls/rustls) is used for TLS, but `open
155155

156156
```toml
157157
[dependencies]
158-
kube = { version = "0.94.1", default-features = false, features = ["client", "openssl-tls"] }
158+
kube = { version = "0.94.2", default-features = false, features = ["client", "openssl-tls"] }
159159
k8s-openapi = { version = "0.22.0", features = ["latest"] }
160160
```
161161

e2e/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ openssl = ["kube/openssl-tls"]
2727
anyhow.workspace = true
2828
tracing.workspace = true
2929
tracing-subscriber.workspace = true
30-
kube = { path = "../kube", version = "^0.94.1", default-features = false, features = ["client", "runtime", "ws", "admission", "gzip"] }
30+
kube = { path = "../kube", version = "^0.94.2", default-features = false, features = ["client", "runtime", "ws", "admission", "gzip"] }
3131
k8s-openapi.workspace = true
3232
serde_json.workspace = true
3333
tokio = { workspace = true, features = ["full"] }

examples/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ anyhow.workspace = true
2929
futures = { workspace = true, features = ["async-await"] }
3030
jsonpath-rust.workspace = true
3131
jsonptr.workspace = true
32-
kube = { path = "../kube", version = "^0.94.1", default-features = false, features = ["admission"] }
33-
kube-derive = { path = "../kube-derive", version = "^0.94.1", default-features = false } # only needed to opt out of schema
32+
kube = { path = "../kube", version = "^0.94.2", default-features = false, features = ["admission"] }
33+
kube-derive = { path = "../kube-derive", version = "^0.94.2", default-features = false } # only needed to opt out of schema
3434
k8s-openapi.workspace = true
3535
serde = { workspace = true, features = ["derive"] }
3636
serde_json.workspace = true

kube-client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ rustls = { workspace = true, optional = true }
5959
rustls-pemfile = { workspace = true, optional = true }
6060
bytes = { workspace = true, optional = true }
6161
tokio = { workspace = true, features = ["time", "signal", "sync"], optional = true }
62-
kube-core = { path = "../kube-core", version = "=0.94.1" }
62+
kube-core = { path = "../kube-core", version = "=0.94.2" }
6363
jsonpath-rust = { workspace = true, optional = true }
6464
tokio-util = { workspace = true, features = ["io", "codec"], optional = true }
6565
hyper = { workspace = true, features = ["client", "http1"], optional = true }

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.94.1", feature = ["derive"] }
9+
kube = { version = "0.94.2", feature = ["derive"] }
1010
```
1111

1212
## Usage

kube-runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ rust.unsafe_code = "forbid"
3131

3232
[dependencies]
3333
futures = { workspace = true, features = ["async-await"] }
34-
kube-client = { path = "../kube-client", version = "=0.94.1", default-features = false, features = ["jsonpatch", "client"] }
34+
kube-client = { path = "../kube-client", version = "=0.94.2", default-features = false, features = ["jsonpatch", "client"] }
3535
derivative.workspace = true
3636
serde.workspace = true
3737
ahash.workspace = true

kube/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ rustdoc-args = ["--cfg", "docsrs"]
4747
workspace = true
4848

4949
[dependencies]
50-
kube-derive = { path = "../kube-derive", version = "=0.94.1", optional = true }
51-
kube-core = { path = "../kube-core", version = "=0.94.1" }
52-
kube-client = { path = "../kube-client", version = "=0.94.1", default-features = false, optional = true }
53-
kube-runtime = { path = "../kube-runtime", version = "=0.94.1", optional = true}
50+
kube-derive = { path = "../kube-derive", version = "=0.94.2", optional = true }
51+
kube-core = { path = "../kube-core", version = "=0.94.2" }
52+
kube-client = { path = "../kube-client", version = "=0.94.2", default-features = false, optional = true }
53+
kube-runtime = { path = "../kube-runtime", version = "=0.94.2", optional = true}
5454
# Not used directly, but required by resolver 2.0 to ensure that the k8s-openapi dependency
5555
# is considered part of the "deps" graph rather than just the "dev-deps" graph
5656
k8s-openapi.workspace = true

0 commit comments

Comments
 (0)