Skip to content

Commit 74db329

Browse files
committed
release 2.0.0
1 parent 48dab39 commit 74db329

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ members = [
1414
]
1515

1616
[workspace.package]
17-
version = "1.1.0"
17+
version = "2.0.0"
1818
authors = [
1919
2020
"Natalie Klestrup Röijezon <[email protected]>",

e2e/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ openssl = ["kube/openssl-tls"]
2727
anyhow.workspace = true
2828
tracing.workspace = true
2929
tracing-subscriber.workspace = true
30-
kube = { path = "../kube", version = "^1.1.0", default-features = false, features = ["client", "runtime", "ws", "admission", "gzip"] }
30+
kube = { path = "../kube", version = "^2.0.0", default-features = false, features = ["client", "runtime", "ws", "admission", "gzip"] }
3131
k8s-openapi.workspace = true
3232
serde_json.workspace = true
3333
tokio = { workspace = true, features = ["full"] }

examples/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ garde = { version = "0.22.0", default-features = false, features = ["derive"] }
2929
anyhow.workspace = true
3030
futures = { workspace = true, features = ["async-await"] }
3131
jsonpath-rust.workspace = true
32-
kube = { path = "../kube", version = "^1.1.0", default-features = false, features = ["admission"] }
33-
kube-derive = { path = "../kube-derive", version = "^1.1.0", default-features = false } # only needed to opt out of schema
32+
kube = { path = "../kube", version = "^2.0.0", default-features = false, features = ["admission"] }
33+
kube-derive = { path = "../kube-derive", version = "^2.0.0", default-features = false } # only needed to opt out of schema
3434
k8s-openapi.workspace = true
3535
serde = { workspace = true, features = ["derive"] }
3636
serde_json.workspace = true

kube-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ openssl = { workspace = true, optional = true }
6060
rustls = { workspace = true, optional = true }
6161
bytes = { workspace = true, optional = true }
6262
tokio = { workspace = true, features = ["time", "signal", "sync"], optional = true }
63-
kube-core = { path = "../kube-core", version = "=1.1.0" }
63+
kube-core = { path = "../kube-core", version = "=2.0.0" }
6464
jsonpath-rust = { workspace = true, optional = true }
6565
tokio-util = { workspace = true, features = ["io", "codec"], optional = true }
6666
hyper = { workspace = true, features = ["client", "http1"], optional = true }

kube-runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ rust.unsafe_code = "forbid"
3030

3131
[dependencies]
3232
futures = { workspace = true, features = ["async-await"] }
33-
kube-client = { path = "../kube-client", version = "=1.1.0", default-features = false, features = ["jsonpatch", "client"] }
33+
kube-client = { path = "../kube-client", version = "=2.0.0", default-features = false, features = ["jsonpatch", "client"] }
3434
educe = { workspace = true, features = ["Clone", "Debug", "Hash", "PartialEq"] }
3535
serde.workspace = true
3636
ahash.workspace = true

kube/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ rustdoc-args = ["--cfg", "docsrs"]
4949
workspace = true
5050

5151
[dependencies]
52-
kube-derive = { path = "../kube-derive", version = "=1.1.0", optional = true }
53-
kube-core = { path = "../kube-core", version = "=1.1.0" }
54-
kube-client = { path = "../kube-client", version = "=1.1.0", default-features = false, optional = true }
55-
kube-runtime = { path = "../kube-runtime", version = "=1.1.0", optional = true}
52+
kube-derive = { path = "../kube-derive", version = "=2.0.0", optional = true }
53+
kube-core = { path = "../kube-core", version = "=2.0.0" }
54+
kube-client = { path = "../kube-client", version = "=2.0.0", default-features = false, optional = true }
55+
kube-runtime = { path = "../kube-runtime", version = "=2.0.0", optional = true}
5656
# Not used directly, but required by resolver 2.0 to ensure that the k8s-openapi dependency
5757
# is considered part of the "deps" graph rather than just the "dev-deps" graph
5858
k8s-openapi.workspace = true

0 commit comments

Comments
 (0)