Skip to content

Commit

Permalink
v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnavion committed Oct 19, 2019
1 parent 5f103bc commit 3e1f843
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
# v0.6.0 (2019-10-18)

- BREAKING CHANGE: Updated `url` dependency, and thus the re-export, to v2. The re-export is only used internally by code-generated API functions and is not part of any public signatures, so it is only a breaking change for you if you were also using it for your own code.

- FEATURE: Added support for Kubernetes 1.16 under the `v1_16` feature.

- FEATURE: The `k8s-openapi-derive` crate is now out of beta.

Corresponding Kubernetes API server versions:

- v1.8.15
- v1.9.11
- v1.10.13
- v1.11.10
- v1.12.10
- v1.13.12
- v1.14.8
- v1.15.5
- v1.16.2

---

# v0.5.1 (2019-09-08)

- FEATURE: The `k8s-openapi` crate now has a default-enabled feature named `api`. If the feature is disabled, the library will only contain the resource types like `api::core::v1::Pod` and not the associated operation functions like `api::core::v1::Pod::read_namespaced_pod`. The corresponding `Response` and `Optional` types will also not be accessible. If your crate does not need the operation functions, you can disable this feature to save on compile time and resources.
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 = "k8s-openapi"
version = "0.5.1"
version = "0.6.0"
license = "Apache-2.0"
authors = ["Arnavion <[email protected]>"]
categories = ["api-bindings", "web-programming::http-client"]
Expand Down
2 changes: 1 addition & 1 deletion k8s-openapi-codegen-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "k8s-openapi-codegen-common"
version = "0.5.1"
version = "0.6.0"
license = "Apache-2.0"
authors = ["Arnavion <[email protected]>"]
categories = ["api-bindings", "web-programming::http-client"]
Expand Down
4 changes: 2 additions & 2 deletions k8s-openapi-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "k8s-openapi-derive"
version = "0.5.1-beta.1"
version = "0.6.0"
license = "Apache-2.0"
authors = ["Arnavion <[email protected]>"]
categories = ["api-bindings", "web-programming::http-client"]
Expand All @@ -19,7 +19,7 @@ include = [

[dependencies]
http = "0.1"
k8s-openapi-codegen-common = { version = "=0.5.1", path = "../k8s-openapi-codegen-common" }
k8s-openapi-codegen-common = { version = "=0.6.0", path = "../k8s-openapi-codegen-common" }
proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = ["extra-traits"] }
Expand Down

0 comments on commit 3e1f843

Please sign in to comment.