diff --git a/docs/patching.md b/docs/patching.md index 9990f2e93..0fc674d1d 100644 --- a/docs/patching.md +++ b/docs/patching.md @@ -14,10 +14,10 @@ Create environment variables for the patch version, which will be used in subseq Keep your terminal open for further steps. ```bash -PRV_VER="1.4.0" -CUR_VER="1.4.1" -NEXT_VER="1.4.2" -BASE_BRANCH="1.4.x" +PRV_VER="1.5.0" +CUR_VER="1.5.1" +NEXT_VER="1.5.2" +BASE_BRANCH="1.5.x" TAG_NAME="v${CUR_VER}" TAG_MSG="Version ${CUR_VER}" ``` diff --git a/docs/releasing.md b/docs/releasing.md index bf0966c6d..17910109c 100644 --- a/docs/releasing.md +++ b/docs/releasing.md @@ -40,9 +40,9 @@ Create environment variables for the release version, which will be used in subs Keep your terminal open for further steps. ```bash -PRV_VER="1.3.0" -CUR_VER="1.4.0" -NEXT_VER="1.5.0" +PRV_VER="1.4.0" +CUR_VER="1.5.0" +NEXT_VER="1.6.0" BASE_BRANCH="main" TAG_NAME="v${CUR_VER}" TAG_MSG="Version ${CUR_VER}" diff --git a/version/version.go b/version/version.go index 81dcfc2b2..f8caeb1de 100644 --- a/version/version.go +++ b/version/version.go @@ -14,10 +14,10 @@ import ( // During development, set the Meta field to "beta". var NodeVersion = Version{ Major: 1, - Minor: 4, + Minor: 5, Patch: 0, - Meta: "", - Alias: "Amsterdam", + Meta: "beta", + Alias: "", } // Version defines the version of Pactus software.