Skip to content

Commit fca5564

Browse files
authored
chore(version): bumping version to 1.7.0 (#1596)
1 parent ca0c7b5 commit fca5564

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs/patching.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ Create environment variables for the patch version, which will be used in subseq
1414
Keep your terminal open for further steps.
1515

1616
```bash
17-
PRV_VER="1.5.0"
18-
CUR_VER="1.5.1"
19-
NEXT_VER="1.5.2"
20-
BASE_BRANCH="1.5.x"
17+
PRV_VER="1.6.0"
18+
CUR_VER="1.6.1"
19+
NEXT_VER="1.6.2"
20+
BASE_BRANCH="1.6.x"
2121
TAG_NAME="v${CUR_VER}"
2222
TAG_MSG="Version ${CUR_VER}"
2323
```

docs/releasing.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ Create environment variables for the release version, which will be used in subs
4040
Keep your terminal open for further steps.
4141

4242
```bash
43-
PRV_VER="1.5.0"
44-
CUR_VER="1.6.0"
45-
NEXT_VER="1.7.0"
43+
PRV_VER="1.6.0"
44+
CUR_VER="1.7.0"
45+
NEXT_VER="1.8.0"
4646
BASE_BRANCH="main"
4747
TAG_NAME="v${CUR_VER}"
4848
TAG_MSG="Version ${CUR_VER}"

version/version.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ import (
1414
// During development, set the Meta field to "beta".
1515
var NodeVersion = Version{
1616
Major: 1,
17-
Minor: 6,
17+
Minor: 7,
1818
Patch: 0,
19-
Meta: "",
20-
Alias: "Mumbai",
19+
Meta: "beta",
20+
Alias: "",
2121
}
2222

2323
// Version defines the version of Pactus software.

0 commit comments

Comments
 (0)