diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e958c0..3b76fb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.20.0](https://github.com/hendrikmaus/kube-leader-election/compare/v0.19.0...v0.20.0) (2023-02-24) + + +### ⚠ BREAKING CHANGES + +* Update kube requirement from 0.78 to 0.79 ([#54](https://github.com/hendrikmaus/kube-leader-election/issues/54)) + +### Features + +* Update kube requirement from 0.78 to 0.79 ([#54](https://github.com/hendrikmaus/kube-leader-election/issues/54)) ([ff03d19](https://github.com/hendrikmaus/kube-leader-election/commit/ff03d19929670d57a76067ca9305aa1167125117)) + ## [0.19.0](https://github.com/hendrikmaus/kube-leader-election/compare/v0.18.0...v0.19.0) (2023-01-10) diff --git a/Cargo.toml b/Cargo.toml index c06ac37..3554398 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kube-leader-election" -version = "0.19.0" +version = "0.20.0" edition = "2018" authors = ["Hendrik Maus "] description = "Leader election implementations for Kubernetes workloads" diff --git a/README.md b/README.md index 494387f..e828c99 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.19.0" +kube-leader-election = "0.20.0" ```