Skip to content

Commit

Permalink
chore: bumping version to 1.3.0 (#1357)
Browse files Browse the repository at this point in the history
  • Loading branch information
themantre authored Jun 20, 2024
1 parent 4b1b8fb commit be881df
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions docs/patching.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ create environment variables for the release version, which will be used in subs
Keep your terminal open for further steps.

```bash
PRV_VER="1.1.0"
CUR_VER="1.1.1"
NEXT_VER="1.1.2"
PRV_VER="1.2.0"
CUR_VER="1.2.1"
NEXT_VER="1.2.2"
BASE_BRANCH="1.2.x"
TAG_NAME="v${CUR_VER}"
TAG_MSG="Version ${CUR_VER}"
BASE_BRANCH="1.1.x"
```

## 5. Follow the Releasing Document
Expand Down
2 changes: 1 addition & 1 deletion docs/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ Keep your terminal open for further steps.
PRV_VER="1.1.0"
CUR_VER="1.2.0"
NEXT_VER="1.3.0"
BASE_BRANCH="main"
TAG_NAME="v${CUR_VER}"
TAG_MSG="Version ${CUR_VER}"
BASE_BRANCH="main"
```

## 5. Update the Version
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: 2,
Minor: 3,
Patch: 0,
Meta: "",
Alias: "Sydney",
Meta: "beta",
Alias: "",
}

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

0 comments on commit be881df

Please sign in to comment.