From 8a2056c5b5eade086deb36524129f95ad02cc511 Mon Sep 17 00:00:00 2001 From: Mantre Date: Thu, 27 Jun 2024 18:00:02 +0800 Subject: [PATCH] chore: releasing version 1.3.0 (#1377) --- CHANGELOG.md | 13 +++++++++++++ docs/patching.md | 8 ++++---- docs/releasing.md | 10 ++++------ version/version.go | 4 ++-- 4 files changed, 23 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d0b59ad1..3112fea90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/patching.md b/docs/patching.md index e6b982656..769d40027 100644 --- a/docs/patching.md +++ b/docs/patching.md @@ -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}" ``` diff --git a/docs/releasing.md b/docs/releasing.md index 790740325..3c68977f9 100644 --- a/docs/releasing.md +++ b/docs/releasing.md @@ -9,8 +9,6 @@ Before proceeding with the release process, ensure that your `origin` remote is set to `git@github.com: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 @@ -34,7 +32,7 @@ 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 @@ -42,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.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}" diff --git a/version/version.go b/version/version.go index 9b04b8db5..b8e9f2878 100644 --- a/version/version.go +++ b/version/version.go @@ -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.