Skip to content

Commit 5836e94

Browse files
committed
release 0.58.1
1 parent a08c0e9 commit 5836e94

File tree

7 files changed

+14
-11
lines changed

7 files changed

+14
-11
lines changed

CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
<!-- next-header -->
22
UNRELEASED
33
===================
4-
* see https://github.com/clux/kube-rs/compare/0.58.0...master
5-
* `kube-runtime`: fix non-unix builds - #582
4+
* see https://github.com/clux/kube-rs/compare/0.58.1...master
5+
6+
0.58.1 / 2021-07-06
7+
===================
8+
* `kube-runtime`: fix non-unix builds - [#582](https://github.com/clux/kube-rs/issues/582)
69

710
0.58.0 / 2021-07-05
811
===================

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Select a version of `kube` along with the generated [k8s-openapi](https://github
1414

1515
```toml
1616
[dependencies]
17-
kube = "0.58.0"
18-
kube-runtime = "0.58.0"
17+
kube = "0.58.1"
18+
kube-runtime = "0.58.1"
1919
k8s-openapi = { version = "0.12.0", default-features = false, features = ["v1_20"] }
2020
```
2121

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

158158
```toml
159159
[dependencies]
160-
kube = { version = "0.58.0", default-features = false, features = ["client", "rustls-tls"] }
161-
kube-runtime = { version = "0.58.0" }
160+
kube = { version = "0.58.1", default-features = false, features = ["client", "rustls-tls"] }
161+
kube-runtime = { version = "0.58.1" }
162162
k8s-openapi = { version = "0.12.0", default-features = false, features = ["v1_20"] }
163163
```
164164

kube-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kube-core"
33
description = "Kube shared types, traits and client-less behavior"
4-
version = "0.58.0"
4+
version = "0.58.1"
55
authors = [
66
"clux <sszynrae@gmail.com>",
77
"kazk <kazk.dev@gmail.com>",

kube-derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kube-derive"
33
description = "Custom derives for the kube kubernetes crates"
4-
version = "0.58.0"
4+
version = "0.58.1"
55
authors = [
66
"clux <sszynrae@gmail.com>",
77
"kazk <kazk.dev@gmail.com>",

kube-derive/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Add the `derive` feature to `kube`:
66

77
```toml
88
[dependencies]
9-
kube = { version = "0.58.0", feature = ["derive"] }
9+
kube = { version = "0.58.1", feature = ["derive"] }
1010
```
1111

1212
## Usage

kube-runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kube-runtime"
3-
version = "0.58.0"
3+
version = "0.58.1"
44
description = "Kubernetes futures controller runtime"
55
authors = [
66
"Teo Klestrup Röijezon <teo@nullable.se>",

kube/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kube"
3-
version = "0.58.0"
3+
version = "0.58.1"
44
description = "Kubernetes client and futures controller runtime"
55
authors = [
66
"clux <sszynrae@gmail.com>",

0 commit comments

Comments
 (0)