You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This version is contains fixes, dependency clearups, and dependency updates. Noteworthy additions are `TryFrom` impls for `Kubeconfig` users in #1801, and a namespace accessor in `Api` in #1788
37
+
This version is contains fixes, dependency clearups, and dependency updates. Noteworthy additions are `TryFrom` impls for `Kubeconfig` users in [#1801](https://github.com/kube-rs/kube/issues/1801), and a namespace accessor in `Api` in [#1788](https://github.com/kube-rs/kube/issues/1788)
26
38
27
39
## New Major
28
40
A new semver major for unstable, public facing dependency updates. As per the new [release cycle](https://kube.rs/stability/#major-release-cycle), it is aligned with the Kubernetes release.
Copy file name to clipboardExpand all lines: docs/getting-started.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Select a version of `kube` along matching versions of [k8s-openapi](https://gith
6
6
7
7
```toml
8
8
[dependencies]
9
-
kube = { version = "2.0.0", features = ["runtime", "derive"] }
9
+
kube = { version = "2.0.1", features = ["runtime", "derive"] }
10
10
k8s-openapi = { version = "0.26.0", features = ["latest", "schemars"] }
11
11
schemars = { version = "1" }
12
12
```
@@ -148,13 +148,13 @@ Uses [rustls](https://github.com/rustls/rustls) with `ring` provider (default) o
148
148
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:
149
149
150
150
```toml
151
-
kube = { version = "2.0.0", default-features = false, features = ["client", "rustls-tls", "aws-lc-rs"] }
151
+
kube = { version = "2.0.1", default-features = false, features = ["client", "rustls-tls", "aws-lc-rs"] }
152
152
```
153
153
154
154
To switch to `openssl`, turn off `default-features`, and enable the `openssl-tls` feature:
155
155
156
156
```toml
157
-
kube = { version = "2.0.0", default-features = false, features = ["client", "openssl-tls"] }
157
+
kube = { version = "2.0.1", default-features = false, features = ["client", "openssl-tls"] }
158
158
```
159
159
160
160
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`.
0 commit comments