From a3108d98f38ee3242c36f32be1d8b1ae4617e49d Mon Sep 17 00:00:00 2001 From: Alex Hunt Date: Thu, 6 Jun 2024 09:45:49 -0700 Subject: [PATCH] Bump k8s-openapi feature to v1_28 --- CHANGELOG.md | 8 +++++++- Cargo.toml | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5165c9d..0fbb8fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.3.1] - 2024-06-06 + +### Changed + +* Update k8s-openapi feature to `v1_28`. + ## [0.3.0] - 2024-03-01 ### Changed @@ -19,7 +25,7 @@ * Upgrade `kube` and `kube-runtime` to `0.85` * This includes an interface change that replaces `ListParams` with `watcher::Config`, described here: https://github.com/MaterializeInc/kube-rs/blob/master/CHANGELOG.md#listwatch-changes * The `namespaced`, `namespaced_all`, and `cluster` methods have been updated correspondingly; this will require an update if you are using them. -* Upgrade `k8s-openapi` to `0.19` with `v1_25` enabled +* Upgrade `k8s-openapi` to `0.19` with `v1_25` enabled ## [0.1.1] - 2023-07-14 diff --git a/Cargo.toml b/Cargo.toml index 7f4abbe..47abee8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "k8s-controller" -version = "0.3.0" +version = "0.3.1" edition = "2021" description = "lightweight framework for writing kubernetes controllers" @@ -12,7 +12,7 @@ include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"] [dependencies] async-trait = "0.1" futures = "0.3" -k8s-openapi = { version = "0.20", features = ["v1_26"] } +k8s-openapi = { version = "0.20", features = ["v1_28"] } kube = { version = "0.87", default-features = false, features = ["client"] } kube-runtime = "0.87" rand = "0.8"