Skip to content

Commit

Permalink
Merge pull request #22 from MaterializeInc/bump_kube
Browse files Browse the repository at this point in the history
Upgrade kube and kube-runtime to 0.92.1 and k8s-openapi to 0.22.0
  • Loading branch information
alex-hunt-materialize authored Jul 24, 2024
2 parents cd90185 + 3038923 commit 0f7f67c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.3.2] - 2024-07-23

### Changed

* Upgrade `kube` and `kube-runtime` to `0.92.1`
* Upgrade `k8s-openapi` to `0.22.0`.

## [0.3.1] - 2024-06-06

### Changed
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "k8s-controller"
version = "0.3.1"
version = "0.3.2"
edition = "2021"

description = "lightweight framework for writing kubernetes controllers"
Expand All @@ -12,9 +12,9 @@ include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
[dependencies]
async-trait = "0.1"
futures = "0.3"
k8s-openapi = { version = "0.20", features = ["v1_28"] }
kube = { version = "0.87", default-features = false, features = ["client"] }
kube-runtime = "0.87"
k8s-openapi = { version = "0.22", default-features = false, features = ["v1_28"] }
kube = { version = "0.92.1", default-features = false, features = ["client"] }
kube-runtime = "0.92.1"
rand = "0.8"
serde = "1"
tracing = "0.1"
Expand Down

0 comments on commit 0f7f67c

Please sign in to comment.