diff --git a/CHANGELOG.md b/CHANGELOG.md index d81f9c77b..4e9110b2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/patching.md b/docs/patching.md index cb56f3efe..31f80fa72 100644 --- a/docs/patching.md +++ b/docs/patching.md @@ -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"