diff --git a/CHANGELOG.md b/CHANGELOG.md index 4884112..af214b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.17.0](https://github.com/hendrikmaus/kube-leader-election/compare/v0.16.0...v0.17.0) (2022-10-31) + + +### Miscellaneous Chores + +* Update kube requirement from 0.75 to 0.76 ([#47](https://github.com/hendrikmaus/kube-leader-election/issues/47)) ([c31a68a](https://github.com/hendrikmaus/kube-leader-election/commit/c31a68ad8807bb64ad89f35b361a164bdc63b85a)) + ## [0.16.0](https://github.com/hendrikmaus/kube-leader-election/compare/v0.15.0...v0.16.0) (2022-10-07) diff --git a/Cargo.toml b/Cargo.toml index 83fce34..c4062c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kube-leader-election" -version = "0.16.0" +version = "0.17.0" edition = "2018" authors = ["Hendrik Maus "] description = "Leader election implementations for Kubernetes workloads" diff --git a/README.md b/README.md index 6c66a10..85f4a01 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.16.0" +kube-leader-election = "0.17.0" ```