diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e9b186..ae01748 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.33.0](https://github.com/hendrikmaus/kube-leader-election/compare/v0.32.0...v0.33.0) (2024-06-12) + + +### ⚠ BREAKING CHANGES + +* update kube requirement from 0.91 to 0.92 ([#89](https://github.com/hendrikmaus/kube-leader-election/issues/89)) + +### Features + +* update kube requirement from 0.91 to 0.92 ([#89](https://github.com/hendrikmaus/kube-leader-election/issues/89)) ([98a3eca](https://github.com/hendrikmaus/kube-leader-election/commit/98a3ecad7c0389805cc9f866767549606104016a)) + ## [0.32.0](https://github.com/hendrikmaus/kube-leader-election/compare/v0.31.0...v0.32.0) (2024-05-06) diff --git a/Cargo.toml b/Cargo.toml index 6d09c0a..2d57535 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kube-leader-election" -version = "0.32.0" +version = "0.33.0" edition = "2018" authors = ["Hendrik Maus "] description = "Leader election implementations for Kubernetes workloads" diff --git a/README.md b/README.md index ff28e18..7af1324 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This library provides simple leader election for Kubernetes workloads. ```toml [dependencies] -kube-leader-election = "0.32.0" +kube-leader-election = "0.33.0" ```