v0.2.0
-
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 aspub type Quantity = String;
but is now emitted aspub struct Quantity(pub String);
-
BREAKING CHANGE: The
IntOrString
enum in the crate root no longer exists. Previously each version'sio.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 themselvespub enum IntOrString { ... }
. This bringsIntOrString
in line with other types likeRawExtension
that have special replacement versions.
Corresponding Kubernetes API server versions:
- v1.7.16
- v1.8.14
- v1.9.9
- v1.10.5
- v1.11.0