Skip to content

Commit

Permalink
chore(version): bumping version to 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
themantre committed Oct 8, 2024
1 parent 3872d0c commit 9aea177
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions docs/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0"
CUR_VER="1.5.0"
NEXT_VER="1.6.0"
PRV_VER="1.5.0"
CUR_VER="1.6.0"
NEXT_VER="1.7.0"
BASE_BRANCH="main"
TAG_NAME="v${CUR_VER}"
TAG_MSG="Version ${CUR_VER}"
Expand Down Expand Up @@ -131,7 +131,8 @@ Create a new announcement post on the
Additionally, update the new release on the
[GitHub Releases](https://github.com/pactus-project/pactus/releases) page.
If gRPC APIs has changed in this version,
be sure to update the [API documentation](https://docs.pactus.org/api/) accordingly.
be sure to update the [API documentation](https://docs.pactus.org/api/) and
[Python SDK](https://github.com/pactus-project/python-sdk) accordingly.

## 12. Celebrate 🎉

Expand Down
6 changes: 3 additions & 3 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ import (
// During development, set the Meta field to "beta".
var NodeVersion = Version{
Major: 1,
Minor: 5,
Minor: 6,
Patch: 0,
Meta: "",
Alias: "Singapore",
Meta: "beta",
Alias: "",
}

// Version defines the version of Pactus software.
Expand Down

0 comments on commit 9aea177

Please sign in to comment.