Skip to content

Commit

Permalink
chore(version): bumping version to 1.5.0 (#1451)
Browse files Browse the repository at this point in the history
  • Loading branch information
themantre authored Aug 1, 2024
1 parent a505f9c commit 2030632
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions docs/patching.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
```
Expand Down
6 changes: 3 additions & 3 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.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}"
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: 4,
Minor: 5,
Patch: 0,
Meta: "",
Alias: "Amsterdam",
Meta: "beta",
Alias: "",
}

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

0 comments on commit 2030632

Please sign in to comment.