From 7dfbde30914161a7a91aecfc141d5623287e46f9 Mon Sep 17 00:00:00 2001 From: Ben Blattberg Date: Wed, 18 Dec 2024 15:51:40 -0600 Subject: [PATCH 1/2] Add release notes and update tag --- docs/config.toml | 2 +- docs/content/reference/pgo_version.md | 4 ++-- docs/content/releases/0.5.1.md | 20 ++++++++++++++++++++ internal/cmd/client_version.go | 2 +- internal/cmd/version.go | 2 +- 5 files changed, 25 insertions(+), 5 deletions(-) create mode 100644 docs/content/releases/0.5.1.md diff --git a/docs/config.toml b/docs/config.toml index 8572534..9a751c9 100644 --- a/docs/config.toml +++ b/docs/config.toml @@ -15,7 +15,7 @@ defaultContentLanguageInSubdir= false enableMissingTranslationPlaceholders = false [params] -clientVersion = "0.5.0" +clientVersion = "0.5.1" # 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 9ec1cd6..eed771d 100644 --- a/docs/content/reference/pgo_version.md +++ b/docs/content/reference/pgo_version.md @@ -31,8 +31,8 @@ pgo version ``` ### Example output ``` -Client Version: v0.5.0 -Operator Version: v5.5.0 +Client Version: v0.5.1 +Operator Version: v5.7.0 ``` ### Options diff --git a/docs/content/releases/0.5.1.md b/docs/content/releases/0.5.1.md new file mode 100644 index 0000000..945848f --- /dev/null +++ b/docs/content/releases/0.5.1.md @@ -0,0 +1,20 @@ +--- +title: "0.5.1" +draft: false +weight: 992 +--- + +[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.1. + +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 continues gathering data if it encounters errors, and surfaces error message reporting from Patroni and pgBackRest by writing errors to the console and the support export log for troubleshooting. \ No newline at end of file diff --git a/internal/cmd/client_version.go b/internal/cmd/client_version.go index 0519766..d23df7f 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.0" +const clientVersion = "v0.5.1" diff --git a/internal/cmd/version.go b/internal/cmd/version.go index eedf070..f8c80f1 100644 --- a/internal/cmd/version.go +++ b/internal/cmd/version.go @@ -45,7 +45,7 @@ pgo version ### Example output Client Version: %s -Operator Version: v5.5.0`, clientVersion)) +Operator Version: v5.7.0`, clientVersion)) cmd.RunE = func(cmd *cobra.Command, args []string) error { From d40ab9e2a344598bc8f512b2fa1bc860c68ecd4b Mon Sep 17 00:00:00 2001 From: Benjamin Blattberg Date: Wed, 18 Dec 2024 16:38:39 -0600 Subject: [PATCH 2/2] Update 0.5.1.md --- docs/content/releases/0.5.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/releases/0.5.1.md b/docs/content/releases/0.5.1.md index 945848f..ef9889f 100644 --- a/docs/content/releases/0.5.1.md +++ b/docs/content/releases/0.5.1.md @@ -17,4 +17,4 @@ Additionally, please see the [CPK documentation](https://access.crunchydata.com/ ## Features -- The `support export` command now continues gathering data if it encounters errors, and surfaces error message reporting from Patroni and pgBackRest by writing errors to the console and the support export log for troubleshooting. \ No newline at end of file +- The `support export` command now continues gathering data if it encounters errors; and surfaces error message reporting from Patroni and pgBackRest by writing errors to the console and the support export log for troubleshooting.