Skip to content

Commit

Permalink
release 0.58.1
Browse files Browse the repository at this point in the history
  • Loading branch information
clux committed Jul 6, 2021
1 parent a08c0e9 commit 5836e94
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<!-- next-header -->
UNRELEASED
===================
* see https://github.com/clux/kube-rs/compare/0.58.0...master
* `kube-runtime`: fix non-unix builds - #582
* see https://github.com/clux/kube-rs/compare/0.58.1...master

0.58.1 / 2021-07-06
===================
* `kube-runtime`: fix non-unix builds - [#582](https://github.com/clux/kube-rs/issues/582)

0.58.0 / 2021-07-05
===================
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Select a version of `kube` along with the generated [k8s-openapi](https://github

```toml
[dependencies]
kube = "0.58.0"
kube-runtime = "0.58.0"
kube = "0.58.1"
kube-runtime = "0.58.1"
k8s-openapi = { version = "0.12.0", default-features = false, features = ["v1_20"] }
```

Expand Down Expand Up @@ -157,8 +157,8 @@ Kube has basic support ([with caveats](https://github.com/clux/kube-rs/issues?q=

```toml
[dependencies]
kube = { version = "0.58.0", default-features = false, features = ["client", "rustls-tls"] }
kube-runtime = { version = "0.58.0" }
kube = { version = "0.58.1", default-features = false, features = ["client", "rustls-tls"] }
kube-runtime = { version = "0.58.1" }
k8s-openapi = { version = "0.12.0", default-features = false, features = ["v1_20"] }
```

Expand Down
2 changes: 1 addition & 1 deletion kube-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kube-core"
description = "Kube shared types, traits and client-less behavior"
version = "0.58.0"
version = "0.58.1"
authors = [
"clux <[email protected]>",
"kazk <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion kube-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kube-derive"
description = "Custom derives for the kube kubernetes crates"
version = "0.58.0"
version = "0.58.1"
authors = [
"clux <[email protected]>",
"kazk <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion kube-derive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Add the `derive` feature to `kube`:

```toml
[dependencies]
kube = { version = "0.58.0", feature = ["derive"] }
kube = { version = "0.58.1", feature = ["derive"] }
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion kube-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kube-runtime"
version = "0.58.0"
version = "0.58.1"
description = "Kubernetes futures controller runtime"
authors = [
"Teo Klestrup Röijezon <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion kube/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kube"
version = "0.58.0"
version = "0.58.1"
description = "Kubernetes client and futures controller runtime"
authors = [
"clux <[email protected]>",
Expand Down

0 comments on commit 5836e94

Please sign in to comment.