diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0ee8c012..816df2d5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.0" + ".": "0.3.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 83b7cdbf..e672d4c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.1](https://github.com/operasoftware/cnpg-plugin-pgbackrest/compare/v0.3.0...v0.3.1) (2025-09-30) + + +### Bug Fixes + +* Conflicting leaderElectionId between backup plugins ([e7e9a99](https://github.com/operasoftware/cnpg-plugin-pgbackrest/commit/e7e9a99846a2c0b25541938ff9169bcb5ddc23e7)) + ## [0.3.0](https://github.com/operasoftware/cnpg-plugin-pgbackrest/compare/v0.2.1...v0.3.0) (2025-09-15) diff --git a/README.md b/README.md index 8ec25972..34df01df 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ Use `kubectl` to apply the manifest for the latest commit in the `main` branch: ```sh kubectl apply -f \ - https://github.com/operasoftware/cnpg-plugin-pgbackrest/releases/download/v0.3.0/manifest.yaml + https://github.com/operasoftware/cnpg-plugin-pgbackrest/releases/download/v0.3.1/manifest.yaml ``` diff --git a/internal/cnpgi/metadata/constants.go b/internal/cnpgi/metadata/constants.go index c80490fc..35fb6099 100644 --- a/internal/cnpgi/metadata/constants.go +++ b/internal/cnpgi/metadata/constants.go @@ -16,7 +16,7 @@ const ( // Data is the metadata of this plugin. var Data = identity.GetPluginMetadataResponse{ Name: PluginName, - Version: "0.3.0", // x-release-please-version + Version: "0.3.1", // x-release-please-version DisplayName: "pgBackRestInstance", ProjectUrl: "https://github.com/operasoftware/cnpg-plugin-pgbackrest", RepositoryUrl: "https://github.com/operasoftware/cnpg-plugin-pgbackrest",