From f8d05a1bbf3e76e16be230e9e889601328d8c678 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20=C3=81ngel=20Ortu=C3=B1o?= Date: Mon, 6 Jun 2022 15:48:46 +0200 Subject: [PATCH] 0.61.0 release (#239) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Ángel Ortuño --- CHANGELOG.md | 4 ++++ helm/Chart.yaml | 2 +- helm/values.yaml | 2 +- pkg/version/version.go | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 544a1d224..64733a0a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## jackal - main / unreleased +## 0.61.0 (2022/06/06) + +* [ENHANCEMENT] Added for cloud LB support. [237](https://github.com/ortuman/jackal/pull/237) + ## 0.60.0 (2022/05/27) * [ENHANCEMENT] Helm chart. [#217](https://github.com/ortuman/jackal/pull/217) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 644bf0fa7..23115f505 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: "v1" name: jackal version: 1.0.0 -appVersion: v0.60.0 +appVersion: v0.61.0 kubeVersion: "^1.10.0-0" description: "Instant messaging server for the Extensible Messaging and Presence Protocol (XMPP)." home: https://github.com/ortuman/jackal diff --git a/helm/values.yaml b/helm/values.yaml index 6f7cf57c4..f74be79f9 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -18,7 +18,7 @@ jackal: image: repository: ortuman/jackal - tag: 0.60.0 + tag: 0.61.0 pullPolicy: IfNotPresent resources: requests: diff --git a/pkg/version/version.go b/pkg/version/version.go index 4a279b90d..3925c21d7 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -19,7 +19,7 @@ import ( ) // Version represents application version. -var Version = NewVersion(0, 60, 0) +var Version = NewVersion(0, 61, 0) // APIVersion represents admin API version. var APIVersion = NewVersion(1, 0, 0)