Skip to content

Commit

Permalink
(cargo-release) version 0.51.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clux committed Feb 28, 2021
1 parent 0882a6f commit e4196d5
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 19 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
<!-- next-header -->
UNRELEASED
===================
* see https://github.com/clux/kube-rs/compare/0.50.1...master
* `kube` `Config` now allows arbirary extension objects - #425
* `kube` `Config` now allows multiple yaml documents per kubeconfig - #440 via #441
* `kube-derive` now more robust and is using `darling` - #435
* see https://github.com/clux/kube-rs/compare/0.51.0...master

0.51.0 / 2021-02-28
===================
* `kube` `Config` now allows arbirary extension objects - [#425](https://github.com/clux/kube-rs/issues/425)
* `kube` `Config` now allows multiple yaml documents per kubeconfig - [#440](https://github.com/clux/kube-rs/issues/440) via [#441](https://github.com/clux/kube-rs/issues/441)
* `kube-derive` now more robust and is using `darling` - [#435](https://github.com/clux/kube-rs/issues/435)
* docs improvements to patch + runtime

0.50.1 / 2021-02-17
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.50.1"
kube-runtime = "0.50.1"
kube = "0.51.0"
kube-runtime = "0.51.0"
k8s-openapi = { version = "0.11.0", default-features = false, features = ["v1_20"] }
```

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

```toml
[dependencies]
kube = { version = "0.50.1", default-features = false, features = ["rustls-tls"] }
kube-runtime = { version = "0.50.1", default-features = false, features = ["rustls-tls"] }
kube = { version = "0.51.0", default-features = false, features = ["rustls-tls"] }
kube-runtime = { version = "0.51.0", default-features = false, features = ["rustls-tls"] }
k8s-openapi = { version = "0.11.0", default-features = false, features = ["v1_20"] }
```

Expand Down
6 changes: 3 additions & 3 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ ws = ["kube/ws"]
anyhow = "1.0.37"
env_logger = "0.8.2"
futures = "0.3.8"
kube = { path = "../kube", version = "^0.50.0", default-features = false }
kube-derive = { path = "../kube-derive", version = "^0.50.0", default-features = false } # only needed to opt out of schema
kube-runtime = { path = "../kube-runtime", version = "^0.50.0", default-features = false }
kube = { path = "../kube", version = "^0.51.0", default-features = false }
kube-derive = { path = "../kube-derive", version = "^0.51.0", default-features = false } # only needed to opt out of schema
kube-runtime = { path = "../kube-runtime", version = "^0.51.0", default-features = false }
k8s-openapi = { version = "0.11.0", features = ["v1_20"], default-features = false }
log = "0.4.11"
serde = { version = "1.0.118", features = ["derive"] }
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.50.1"
version = "0.51.0"
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.50.1", feature = ["derive"] }
kube = { version = "0.51.0", feature = ["derive"] }
```

## Usage
Expand Down
6 changes: 3 additions & 3 deletions kube-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kube-runtime"
version = "0.50.1"
version = "0.51.0"
description = "Kubernetes futures controller runtime"
authors = [
"Teo Klestrup Röijezon <[email protected]>",
Expand All @@ -14,7 +14,7 @@ edition = "2018"

[dependencies]
futures = "0.3.8"
kube = { path = "../kube", version = "^0.50.0", default-features = false }
kube = { path = "../kube", version = "^0.51.0", default-features = false }
derivative = "2.1.1"
serde = "1.0.118"
smallvec = "1.6.0"
Expand All @@ -34,7 +34,7 @@ native-tls = ["kube/native-tls"]
rustls-tls = ["kube/rustls-tls"]

[dev-dependencies]
kube-derive = { path = "../kube-derive", version = "^0.50.0"}
kube-derive = { path = "../kube-derive", version = "^0.51.0"}
serde_json = "1.0.61"
tokio = { version = "1.0.1", features = ["full", "test-util"] }
rand = "0.8.0"
Expand Down
4 changes: 2 additions & 2 deletions kube/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kube"
version = "0.50.1"
version = "0.51.0"
description = "Kubernetes client and futures controller runtime"
authors = [
"clux <[email protected]>",
Expand Down Expand Up @@ -51,7 +51,7 @@ bytes = "1.0.0"
Inflector = "0.11.4"
tokio = { version = "1.0.1", features = ["time", "signal", "sync"] }
static_assertions = "1.1.0"
kube-derive = { path = "../kube-derive", version = "^0.50.0", optional = true }
kube-derive = { path = "../kube-derive", version = "^0.51.0", optional = true }
jsonpath_lib = "0.2.6"
tokio-util = { version = "0.6.0", features = ["io", "codec"] }
json-patch = { version = "0.2.6", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ path = "dapp.rs"
anyhow = "1.0.37"
env_logger = "0.8.2"
futures = "0.3.8"
kube = { path = "../kube", version = "^0.50.0"}
kube = { path = "../kube", version = "^0.51.0"}
k8s-openapi = { version = "0.11.0", features = ["v1_20"], default-features = false }
log = "0.4.11"
serde_json = "1.0.61"
Expand Down

0 comments on commit e4196d5

Please sign in to comment.