diff --git a/docs/config.toml b/docs/config.toml index 9a751c9..3162c4b 100644 --- a/docs/config.toml +++ b/docs/config.toml @@ -15,7 +15,7 @@ defaultContentLanguageInSubdir= false enableMissingTranslationPlaceholders = false [params] -clientVersion = "0.5.1" +clientVersion = "0.5.2" # crunchy-hugo-theme params showVisitedLinks = false # default is false # in theme diff --git a/docs/content/reference/pgo_version.md b/docs/content/reference/pgo_version.md index eed771d..2845b23 100644 --- a/docs/content/reference/pgo_version.md +++ b/docs/content/reference/pgo_version.md @@ -31,7 +31,7 @@ pgo version ``` ### Example output ``` -Client Version: v0.5.1 +Client Version: v0.5.2 Operator Version: v5.7.0 ``` diff --git a/docs/content/releases/0.5.2.md b/docs/content/releases/0.5.2.md new file mode 100644 index 0000000..918eea6 --- /dev/null +++ b/docs/content/releases/0.5.2.md @@ -0,0 +1,24 @@ +--- +title: "0.5.2" +draft: false +weight: 991 +--- + +[Crunchy Postgres for Kubernetes]: https://www.crunchydata.com/products/crunchy-postgresql-for-kubernetes +[`pgo` CLI documentation]: https://access.crunchydata.com/documentation/postgres-operator-client/latest + +Crunchy Data announces the release of `pgo`, Postgres Operator Client from Crunchy Data 0.5.2. + +Built as a `kubectl` plugin, the `pgo` CLI facilitates the creation and management of PostgreSQL clusters created using [Crunchy Postgres for Kubernetes][]. + +For more information about using the CLI and the various commands available, please see the [`pgo` CLI documentation][]. + +Additionally, please see the [CPK documentation](https://access.crunchydata.com/documentation/postgres-operator/latest) for information about [getting started](https://access.crunchydata.com/documentation/postgres-operator/latest/quickstart/) with Crunchy Postgres for Kubernetes. + +## Features + +- The `support export` command now includes the following improvements + - Adds support for gathering on volume Patroni logs. + - Adds support for gathering logs based on OTel configuration settings. + - Adds the ability to copy pgBackRest logs to a user's local machine. + - Gathers PGUpgrade resources. \ No newline at end of file diff --git a/internal/cmd/client_version.go b/internal/cmd/client_version.go index 8d588fc..3e99094 100644 --- a/internal/cmd/client_version.go +++ b/internal/cmd/client_version.go @@ -5,4 +5,4 @@ package cmd // store the current PGO CLI version -const clientVersion = "v0.5.1" +const clientVersion = "v0.5.2"