Skip to content

Commit 3d2471b

Browse files
committed
release 0.93.1
1 parent 0f72748 commit 3d2471b

File tree

9 files changed

+17
-14
lines changed

9 files changed

+17
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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.93.0...main
8+
* see https://github.com/kube-rs/kube/compare/0.93.1...main
9+
10+
0.93.1 / 2024-07-23
11+
===================
912

1013
0.93.0 / 2024-07-22
1114
===================

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ members = [
1414
]
1515

1616
[workspace.package]
17-
version = "0.93.0"
17+
version = "0.93.1"
1818
authors = [
1919
2020
"Natalie Klestrup Röijezon <[email protected]>",

README.md

Lines changed: 2 additions & 2 deletions
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.93.0", features = ["runtime", "derive"] }
19+
kube = { version = "0.93.1", 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.93.0", default-features = false, features = ["client", "openssl-tls"] }
158+
kube = { version = "0.93.1", default-features = false, features = ["client", "openssl-tls"] }
159159
k8s-openapi = { version = "0.22.0", features = ["latest"] }
160160
```
161161

e2e/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.93.0", default-features = false, features = ["client", "runtime", "ws", "admission", "gzip"] }
30+
kube = { path = "../kube", version = "^0.93.1", 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

Lines changed: 2 additions & 2 deletions
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.93.0", default-features = false, features = ["admission"] }
33-
kube-derive = { path = "../kube-derive", version = "^0.93.0", default-features = false } # only needed to opt out of schema
32+
kube = { path = "../kube", version = "^0.93.1", default-features = false, features = ["admission"] }
33+
kube-derive = { path = "../kube-derive", version = "^0.93.1", 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ rustls = { workspace = true, optional = true }
5858
rustls-pemfile = { workspace = true, optional = true }
5959
bytes = { workspace = true, optional = true }
6060
tokio = { workspace = true, features = ["time", "signal", "sync"], optional = true }
61-
kube-core = { path = "../kube-core", version = "=0.93.0" }
61+
kube-core = { path = "../kube-core", version = "=0.93.1" }
6262
jsonpath-rust = { workspace = true, optional = true }
6363
tokio-util = { workspace = true, features = ["io", "codec"], optional = true }
6464
hyper = { workspace = true, features = ["client", "http1"], optional = true }

kube-derive/README.md

Lines changed: 1 addition & 1 deletion
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.93.0", feature = ["derive"] }
9+
kube = { version = "0.93.1", feature = ["derive"] }
1010
```
1111

1212
## Usage

kube-runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.93.0", default-features = false, features = ["jsonpatch", "client"] }
34+
kube-client = { path = "../kube-client", version = "=0.93.1", default-features = false, features = ["jsonpatch", "client"] }
3535
derivative.workspace = true
3636
serde.workspace = true
3737
ahash.workspace = true

kube/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ rustdoc-args = ["--cfg", "docsrs"]
4646
workspace = true
4747

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

0 commit comments

Comments
 (0)