Skip to content

Commit 7e9a1bc

Browse files
author
Arnavion
committed
v0.2.0
1 parent 28a23e3 commit 7e9a1bc

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v0.2.0 (2018-07-06)
2+
3+
- 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);`
4+
5+
- 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.
6+
17
# v0.1.0 (2018-06-30)
28

39
First release.

k8s-openapi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "k8s-openapi"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
license = "Apache-2.0"
55
authors = ["Arnavion <[email protected]>"]
66
categories = ["api-bindings", "web-programming::http-client"]

0 commit comments

Comments
 (0)