diff --git a/apps/emqx/include/emqx_release.hrl b/apps/emqx/include/emqx_release.hrl index 270acf07a..18e059422 100644 --- a/apps/emqx/include/emqx_release.hrl +++ b/apps/emqx/include/emqx_release.hrl @@ -32,7 +32,7 @@ %% `apps/emqx/src/bpapi/README.md' %% Opensource edition --define(EMQX_RELEASE_CE, "5.6.1"). +-define(EMQX_RELEASE_CE, "5.7.0-alpha.1"). %% Enterprise edition --define(EMQX_RELEASE_EE, "5.6.1"). +-define(EMQX_RELEASE_EE, "5.7.0-alpha.1"). diff --git a/deploy/charts/emqx-enterprise/Chart.yaml b/deploy/charts/emqx-enterprise/Chart.yaml index 3178cce62..2f363bdfc 100644 --- a/deploy/charts/emqx-enterprise/Chart.yaml +++ b/deploy/charts/emqx-enterprise/Chart.yaml @@ -14,8 +14,8 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 5.6.1 +version: 5.7.0-alpha.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. -appVersion: 5.6.1 +appVersion: 5.7.0-alpha.1 diff --git a/scripts/rel/cut.sh b/scripts/rel/cut.sh index 95cd7a1d4..724b0cab2 100755 --- a/scripts/rel/cut.sh +++ b/scripts/rel/cut.sh @@ -129,6 +129,12 @@ rel_branch() { e5.6.*) echo 'release-56' ;; + v5.7.*) + echo 'release-57' + ;; + e5.7.*) + echo 'release-57' + ;; *) logerr "Unsupported version tag $TAG" exit 1 diff --git a/scripts/rel/sync-remotes.sh b/scripts/rel/sync-remotes.sh index 6492c90c0..430021a79 100755 --- a/scripts/rel/sync-remotes.sh +++ b/scripts/rel/sync-remotes.sh @@ -5,7 +5,7 @@ set -euo pipefail # ensure dir cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")/../.." -BASE_BRANCHES=( 'release-56' 'release-55' 'master' ) +BASE_BRANCHES=( 'release-57' 'release-56' 'release-55' 'master' ) usage() { cat <