Skip to content

Commit

Permalink
document 0.46.0 following #360
Browse files Browse the repository at this point in the history
  • Loading branch information
clux committed Jan 2, 2021
1 parent 9871f97 commit f419cac
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
0.46.0 / 2021-01-02
===================
* feat: `kube` now has __optional__ websocket support with `async_tungstenite` under `ws` and `ws-*-tls` features #360
* feat: `AttachableObject` marker trait added and implemented for `k8s_openapi::api::core::v1::Pod` #360
* feat: `AttachParams` added for `Api::exec` and `Api::attach` for `AttachableObject`s #360
* examples: `pod_shell`, `pod_attach`, `pod_exec` demonstrating the new features #360

0.45.0 / 2020-12-26
===================
* feat: `kube-derive` now has a default enabled `schema` feature
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ kube-runtime = "0.45.0"
k8s-openapi = { version = "0.9.0", default-features = false, features = ["v1_17"] }
```

[Features are available](https://github.com/clux/kube-rs/blob/master/kube/Cargo.toml#L17).
[Features are available](https://github.com/clux/kube-rs/blob/master/kube/Cargo.toml#L18).

We recommend turning off `default-features` for `k8s-openapi` to speed up your compilation.

Expand Down
4 changes: 2 additions & 2 deletions kube/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kube"
version = "0.45.0"
description = "Kubernetes client in futures controller runtime"
description = "Kubernetes client and futures controller runtime"
authors = [
"clux <[email protected]>",
"Teo Klestrup Röijezon <[email protected]>",
Expand All @@ -27,7 +27,7 @@ ws-native-tls = ["real-native-tls", "tokio-native-tls", "async-tungstenite/tokio
ws-rustls-tls = ["tokio-rustls", "async-tungstenite/tokio-rustls"]

[package.metadata.docs.rs]
features = ["derive"]
features = ["derive", "ws"]

[dependencies]
base64 = "0.12.1"
Expand Down

0 comments on commit f419cac

Please sign in to comment.