diff --git a/CHANGELOG.md b/CHANGELOG.md index 32e97869d..544a1d224 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## jackal - main / unreleased +## 0.60.0 (2022/05/27) + +* [ENHANCEMENT] Helm chart. [#217](https://github.com/ortuman/jackal/pull/217) +* [ENHANCEMENT] Improve k8s compatibility. [#219](https://github.com/ortuman/jackal/pull/219), [#220](https://github.com/ortuman/jackal/pull/220), [#221](https://github.com/ortuman/jackal/pull/221), [#222](https://github.com/ortuman/jackal/pull/222), [#223](https://github.com/ortuman/jackal/pull/223), [#224](https://github.com/ortuman/jackal/pull/224), [#225](https://github.com/ortuman/jackal/pull/225), [#226](https://github.com/ortuman/jackal/pull/226), [#227](https://github.com/ortuman/jackal/pull/227), [#228](https://github.com/ortuman/jackal/pull/228), [#229](https://github.com/ortuman/jackal/pull/229), [#230](https://github.com/ortuman/jackal/pull/230), [#231](https://github.com/ortuman/jackal/pull/231), [#232](https://github.com/ortuman/jackal/pull/232) + ## 0.58.0 (2022/03/04) * [FEATURE] Added BoltDB repository type. [#212](https://github.com/ortuman/jackal/pull/212) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 940ce6575..644bf0fa7 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: "v1" name: jackal version: 1.0.0 -appVersion: v0.59.0 +appVersion: v0.60.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 d437fe9ae..d7e27172e 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -18,7 +18,7 @@ jackal: image: repository: ortuman/jackal - tag: 0.59.0 + tag: 0.60.0 pullPolicy: IfNotPresent resources: requests: diff --git a/pkg/version/version.go b/pkg/version/version.go index dd71db814..4a279b90d 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -19,7 +19,7 @@ import ( ) // Version represents application version. -var Version = NewVersion(0, 59, 0) +var Version = NewVersion(0, 60, 0) // APIVersion represents admin API version. var APIVersion = NewVersion(1, 0, 0)