diff --git a/CHANGELOG.md b/CHANGELOG.md index b5f4ab6..416cfd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.13.0](https://github.com/hendrikmaus/kube-leader-election/compare/v0.12.0...v0.13.0) (2022-05-26) + + +### ⚠ BREAKING CHANGES + +* update kube requirement from 0.72 to 0.73 (#38) + +### Features + +* update kube requirement from 0.72 to 0.73 ([#38](https://github.com/hendrikmaus/kube-leader-election/issues/38)) ([c6ea466](https://github.com/hendrikmaus/kube-leader-election/commit/c6ea466f5e97b1c81f4920f8a093987cd1b41f14)) + ## [0.12.0](https://github.com/hendrikmaus/kube-leader-election/compare/v0.11.0...v0.12.0) (2022-05-18) diff --git a/Cargo.toml b/Cargo.toml index e1ec006..9fd58cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kube-leader-election" -version = "0.12.0" +version = "0.13.0" edition = "2018" authors = ["Hendrik Maus "] description = "Leader election implementations for Kubernetes workloads" diff --git a/README.md b/README.md index c3c9970..ae28f1b 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.12.0" +kube-leader-election = "0.13.0" ```