Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: releasing version 0.15.2 #782

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.15.1](https://github.com/pactus-project/pactus/compare/v0.15.0...v0.15.1)(2023-10-24)

### Feat

- add community bootstrap nodes to testnet config ([#764](https://github.com/pactus-project/pactus/pull/764))
- **network**: implementing connection manager ([#773](https://github.com/pactus-project/pactus/pull/773))
- **network**: adding bootstrapper mode to the network config ([#760](https://github.com/pactus-project/pactus/pull/760))

### Fix

- **network**: ensure relay is not used when there is no direct connection
- **network**: close connection when unbale to get supported protocols ([#781](https://github.com/pactus-project/pactus/pull/781))
- **network**: enabling peer exchange for bootstrappers ([#779](https://github.com/pactus-project/pactus/pull/779))
- **network**: set connection limit for the resource manager ([#775](https://github.com/pactus-project/pactus/pull/775))
- **sync**: peer status set to known on sucessfull handshaking ([#774](https://github.com/pactus-project/pactus/pull/774))

## [0.15.1](https://github.com/pactus-project/pactus/compare/v0.15.0...v0.15.1)(2023-10-22)

### Fix
Expand Down
6 changes: 3 additions & 3 deletions docs/patching.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ To patch a released version, start by creating a dedicated branch for that versi
Let's create environment variables for the patch version. For the rest of this document, we will use these environment variables in the commands.

```bash
PRV_VER="0.15.0"
CUR_VER="0.15.1"
NEXT_VER="0.15.2"
PRV_VER="0.15.1"
CUR_VER="0.15.2"
NEXT_VER="0.15.3"
TAG_NAME="v${CUR_VER}"
TAG_MSG="Version ${CUR_VER}"
BASE_VER="0.15.0"
Expand Down