diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2537c1f..218393f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.0" + ".": "0.4.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d5829b..57c3808 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.1](https://github.com/operasoftware/cnpg-plugin-pgbackrest/compare/v0.4.0...v0.4.1) (2025-11-13) + + +### Bug Fixes + +* Parsing PgbackrestRetention.History ([#43](https://github.com/operasoftware/cnpg-plugin-pgbackrest/issues/43)) ([5dd340d](https://github.com/operasoftware/cnpg-plugin-pgbackrest/commit/5dd340dab0e520a7cffd3460c5d3c845b4ce61df)) + ## [0.4.0](https://github.com/operasoftware/cnpg-plugin-pgbackrest/compare/v0.3.1...v0.4.0) (2025-10-25) diff --git a/README.md b/README.md index 0a1ff6f..4d40581 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.4.0/manifest.yaml + https://github.com/operasoftware/cnpg-plugin-pgbackrest/releases/download/v0.4.1/manifest.yaml ``` diff --git a/internal/cnpgi/metadata/constants.go b/internal/cnpgi/metadata/constants.go index dbb48e8..4686f99 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.4.0", // x-release-please-version + Version: "0.4.1", // x-release-please-version DisplayName: "pgBackRestInstance", ProjectUrl: "https://github.com/operasoftware/cnpg-plugin-pgbackrest", RepositoryUrl: "https://github.com/operasoftware/cnpg-plugin-pgbackrest",