Skip to content

Commit

Permalink
0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clux committed Nov 21, 2019
1 parent 18b4f8a commit 7dab946
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.20.0 / 2019-11-21
===================
* ObjectList now implements Iterator - #91
* openapi feature no longer accidentally hardcoded to v1.15 feature - #90

0.19.0 / 2019-11-15
==================
* kube::Error is now a proper error enum and not a Fail impl (thiserror)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kube"
version = "0.19.0"
version = "0.20.0"
description = "Kubernetes client in the style of client-go"
authors = [
"clux <sszynrae@gmail.com>",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ To use the openapi generated types:

```toml
[dependencies]
kube = { version = "0.18.1", features = ["openapi"] }
kube = { version = "0.20.0", features = ["openapi"] }
k8s-openapi = { version = "0.6.0", default-features = false, features = ["v1_15"] }
```

otherwise:

```toml
[dependencies]
kube = "0.18.1"
kube = "0.20.0"
```

The latter is fine in a CRD-only use case.
Expand Down

0 comments on commit 7dab946

Please sign in to comment.