From 92b251a4046ea462201685b80140cecb5d88ea67 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 20:22:25 +0200 Subject: [PATCH] chore(master): release 0.32.0 (#88) --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05fad14..1e9b186 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.32.0](https://github.com/hendrikmaus/kube-leader-election/compare/v0.31.0...v0.32.0) (2024-05-06) + + +### ⚠ BREAKING CHANGES + +* update kube requirement from 0.90 to 0.91 ([#87](https://github.com/hendrikmaus/kube-leader-election/issues/87)) + +### fest + +* update kube requirement from 0.90 to 0.91 ([#87](https://github.com/hendrikmaus/kube-leader-election/issues/87)) ([d888438](https://github.com/hendrikmaus/kube-leader-election/commit/d8884383c3a3af7a24ed222704c2eaa395ff828c)) + ## [0.31.0](https://github.com/hendrikmaus/kube-leader-election/compare/v0.30.0...v0.31.0) (2024-04-04) diff --git a/Cargo.toml b/Cargo.toml index 38199af..506a7d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kube-leader-election" -version = "0.31.0" +version = "0.32.0" edition = "2018" authors = ["Hendrik Maus "] description = "Leader election implementations for Kubernetes workloads" diff --git a/README.md b/README.md index b580978..ff28e18 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.31.0" +kube-leader-election = "0.32.0" ```