Skip to content

Commit

Permalink
chore: releasing version 1.3.0 (#1377)
Browse files Browse the repository at this point in the history
  • Loading branch information
themantre authored Jun 27, 2024
1 parent 5eb3c50 commit 8a2056c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 12 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [1.3.0](https://github.com/pactus-project/pactus/compare/v1.2.0...v1.3.0) (2024-06-27)

### Feat

- **grpc**: get txpool content API ([#1364](https://github.com/pactus-project/pactus/pull/1364))
- **network**: permanent peer store ([#1354](https://github.com/pactus-project/pactus/pull/1354))

### Fix

- **grpc**: change bytes type to hex string ([#1371](https://github.com/pactus-project/pactus/pull/1371))
- **http**: add basic auth middleware for http server ([#1372](https://github.com/pactus-project/pactus/pull/1372))
- **network**: use goroutines for sending streams ([#1365](https://github.com/pactus-project/pactus/pull/1365))

## [1.2.0](https://github.com/pactus-project/pactus/compare/v1.1.0...v1.2.0) (2024-06-20)

### Feat
Expand Down
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.2.0"
CUR_VER="1.2.1"
NEXT_VER="1.2.2"
BASE_BRANCH="1.2.x"
PRV_VER="1.3.0"
CUR_VER="1.3.1"
NEXT_VER="1.3.2"
BASE_BRANCH="1.3.x"
TAG_NAME="v${CUR_VER}"
TAG_MSG="Version ${CUR_VER}"
```
Expand Down
10 changes: 4 additions & 6 deletions docs/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ Before proceeding with the release process,
ensure that your `origin` remote is set to `[email protected]:pactus-project/pactus.git` and not your local fork.
It is recommended to re-clone the project in a location other than your current working directory.
Also, make sure that you have set up GPG for your GitHub account.
Make sure to [set up](https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners)
a self-hosted runner for releasing Pactus for macOS-ARM.

## 2. Fetch the Latest Code

Expand All @@ -34,17 +32,17 @@ pacman -Suyyy
```

Wait for the build to finish. If everything is successful, proceed to the next step.
If not, update the dependency DLLs inside `.github/releasers/releaser_gui_windows.sh` and rerun the command.
If not, update the dependency DLLs inside `.github/releasers/releaser_gui_windows.sh` and re-run the command.

## 4. Set Environment Variables

Create environment variables for the release version, which will be used in subsequent commands throughout this document.
Keep your terminal open for further steps.

```bash
PRV_VER="1.1.0"
CUR_VER="1.2.0"
NEXT_VER="1.3.0"
PRV_VER="1.2.0"
CUR_VER="1.3.0"
NEXT_VER="1.4.0"
BASE_BRANCH="main"
TAG_NAME="v${CUR_VER}"
TAG_MSG="Version ${CUR_VER}"
Expand Down
4 changes: 2 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ var NodeVersion = Version{
Major: 1,
Minor: 3,
Patch: 0,
Meta: "beta",
Alias: "",
Meta: "",
Alias: "Warsaw",
}

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

0 comments on commit 8a2056c

Please sign in to comment.