Skip to content

Commit 1ba4b2a

Browse files
committed
release 1.1.0
1 parent 65172ee commit 1ba4b2a

File tree

9 files changed

+18
-15
lines changed

9 files changed

+18
-15
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/1.0.0...main
8+
* see https://github.com/kube-rs/kube/compare/1.1.0...main
9+
10+
1.1.0 / 2025-05-26
11+
===================
912

1013
[1.0.0](https://github.com/kube-rs/kube/releases/tag/1.0.0) / 2025-05-13
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 = "1.0.0"
17+
version = "1.1.0"
1818
authors = [
1919
"clux <sszynrae@gmail.com>",
2020
"Natalie Klestrup Röijezon <nat@nullable.se>",

README.md

Lines changed: 3 additions & 3 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 = "1.0.0", features = ["runtime", "derive"] }
19+
kube = { version = "1.1.0", features = ["runtime", "derive"] }
2020
k8s-openapi = { version = "0.25.0", features = ["latest"] }
2121
```
2222

@@ -157,13 +157,13 @@ Uses [rustls](https://github.com/rustls/rustls) with `ring` provider (default) o
157157
To switch [rustls providers](https://docs.rs/rustls/latest/rustls/crypto/struct.CryptoProvider.html), turn off `default-features` and enable the `aws-lc-rs` feature:
158158

159159
```toml
160-
kube = { version = "1.0.0", default-features = false, features = ["client", "rustls-tls", "aws-lc-rs"] }
160+
kube = { version = "1.1.0", default-features = false, features = ["client", "rustls-tls", "aws-lc-rs"] }
161161
```
162162

163163
To switch to `openssl`, turn off `default-features`, and enable the `openssl-tls` feature:
164164

165165
```toml
166-
kube = { version = "1.0.0", default-features = false, features = ["client", "openssl-tls"] }
166+
kube = { version = "1.1.0", default-features = false, features = ["client", "openssl-tls"] }
167167
```
168168

169169
This will pull in `openssl` and `hyper-openssl`. If `default-features` is left enabled, you will pull in two TLS stacks, and the default will remain as `rustls`.

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 = "^1.0.0", default-features = false, features = ["client", "runtime", "ws", "admission", "gzip"] }
30+
kube = { path = "../kube", version = "^1.1.0", 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 @@ garde = { version = "0.22.0", default-features = false, features = ["derive"] }
2929
anyhow.workspace = true
3030
futures = { workspace = true, features = ["async-await"] }
3131
jsonpath-rust.workspace = true
32-
kube = { path = "../kube", version = "^1.0.0", default-features = false, features = ["admission"] }
33-
kube-derive = { path = "../kube-derive", version = "^1.0.0", default-features = false } # only needed to opt out of schema
32+
kube = { path = "../kube", version = "^1.1.0", default-features = false, features = ["admission"] }
33+
kube-derive = { path = "../kube-derive", version = "^1.1.0", 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
@@ -60,7 +60,7 @@ openssl = { workspace = true, optional = true }
6060
rustls = { workspace = true, optional = true }
6161
bytes = { workspace = true, optional = true }
6262
tokio = { workspace = true, features = ["time", "signal", "sync"], optional = true }
63-
kube-core = { path = "../kube-core", version = "=1.0.0" }
63+
kube-core = { path = "../kube-core", version = "=1.1.0" }
6464
jsonpath-rust = { workspace = true, optional = true }
6565
tokio-util = { workspace = true, features = ["io", "codec"], optional = true }
6666
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 = "1.0.0", feature = ["derive"] }
9+
kube = { version = "1.1.0", feature = ["derive"] }
1010
```
1111

1212
## Usage

kube-runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ rust.unsafe_code = "forbid"
3030

3131
[dependencies]
3232
futures = { workspace = true, features = ["async-await"] }
33-
kube-client = { path = "../kube-client", version = "=1.0.0", default-features = false, features = ["jsonpatch", "client"] }
33+
kube-client = { path = "../kube-client", version = "=1.1.0", default-features = false, features = ["jsonpatch", "client"] }
3434
educe = { workspace = true, features = ["Clone", "Debug", "Hash", "PartialEq"] }
3535
serde.workspace = true
3636
ahash.workspace = true

kube/Cargo.toml

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

5151
[dependencies]
52-
kube-derive = { path = "../kube-derive", version = "=1.0.0", optional = true }
53-
kube-core = { path = "../kube-core", version = "=1.0.0" }
54-
kube-client = { path = "../kube-client", version = "=1.0.0", default-features = false, optional = true }
55-
kube-runtime = { path = "../kube-runtime", version = "=1.0.0", optional = true}
52+
kube-derive = { path = "../kube-derive", version = "=1.1.0", optional = true }
53+
kube-core = { path = "../kube-core", version = "=1.1.0" }
54+
kube-client = { path = "../kube-client", version = "=1.1.0", default-features = false, optional = true }
55+
kube-runtime = { path = "../kube-runtime", version = "=1.1.0", optional = true}
5656
# Not used directly, but required by resolver 2.0 to ensure that the k8s-openapi dependency
5757
# is considered part of the "deps" graph rather than just the "dev-deps" graph
5858
k8s-openapi.workspace = true

0 commit comments

Comments
 (0)