Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnavion committed Jul 7, 2018
1 parent 28a23e3 commit 7e9a1bc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v0.2.0 (2018-07-06)

- BREAKING CHANGE: Types that were previously emitted as type aliases are now emitted as newtypes. For example `io.k8s.apimachinery.pkg.api.resource.Quantity` was previous emitted as `pub type Quantity = String;` but is now emitted as `pub struct Quantity(pub String);`

- BREAKING CHANGE: The `IntOrString` enum in the crate root no longer exists. Previously each version's `io.k8s.apimachinery.pkg.util.intstr.IntOrString` was emitted as a type alias for the root type - `pub type IntOrString = ::IntOrString;`. Now they are emitted as the enum themselves `pub enum IntOrString { ... }`. This brings `IntOrString` in line with other types like `RawExtension` that have special replacement versions.

# v0.1.0 (2018-06-30)

First release.
2 changes: 1 addition & 1 deletion k8s-openapi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "k8s-openapi"
version = "0.1.0"
version = "0.2.0"
license = "Apache-2.0"
authors = ["Arnavion <[email protected]>"]
categories = ["api-bindings", "web-programming::http-client"]
Expand Down

0 comments on commit 7e9a1bc

Please sign in to comment.