Skip to content

Commit

Permalink
chore: releasing version 0.17.0 (#815)
Browse files Browse the repository at this point in the history
  • Loading branch information
themantre authored Nov 12, 2023
1 parent 1d630be commit b6ff47d
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 6 deletions.
31 changes: 27 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
# Changelog

## [0.16.0](https://github.com/pactus-project/pactus/compare/v0.15.0...v0.16.0)(2023-10-29)
## [0.17.0](https://github.com/pactus-project/pactus/compare/v0.16.0...v0.17.0) (2023-11-12)

### Feat

- **network**: default configs for bootstrap and relay peers ([#812](https://github.com/pactus-project/pactus/pull/812))
- introducing node gossip type ([#811](https://github.com/pactus-project/pactus/pull/811))
- **sync**: adding remote address to the peer info ([#804](https://github.com/pactus-project/pactus/pull/804))
- **network**: adding public address to factory ([#795](https://github.com/pactus-project/pactus/pull/795))
- **network**: filter private ips ([#793](https://github.com/pactus-project/pactus/pull/793))

### Fix

- upgrading Testnet ([#814](https://github.com/pactus-project/pactus/pull/814))
- **sync**: prevent opening sessions indefinitely ([#813](https://github.com/pactus-project/pactus/pull/813))
- **execution**: fixing mistake on calculating unbonded power ([#806](https://github.com/pactus-project/pactus/pull/806))
- **network**: check connection threshold on gater ([#803](https://github.com/pactus-project/pactus/pull/803))
- **network**: no transient connection ([#799](https://github.com/pactus-project/pactus/pull/799))
- not close connection for bootstrap nodes ([#792](https://github.com/pactus-project/pactus/pull/792))

### Refactor

- **sync**: refactoring sync process ([#807](https://github.com/pactus-project/pactus/pull/807))

## [0.16.0](https://github.com/pactus-project/pactus/compare/v0.15.0...v0.16.0) (2023-10-29)

### Feat

Expand All @@ -25,7 +48,7 @@

- **network**: refactoring peer manager ([#787](https://github.com/pactus-project/pactus/pull/787))

## [0.15.0](https://github.com/pactus-project/pactus/compare/v0.13.0...v0.15.0)(2023-10-15)
## [0.15.0](https://github.com/pactus-project/pactus/compare/v0.13.0...v0.15.0) (2023-10-15)

### Feat

Expand Down Expand Up @@ -107,7 +130,7 @@
- Using Generics for calculating Min and Max for numeric type #604 ([#609](https://github.com/pactus-project/pactus/pull/609))
- Updating LRU cache to version 2 #514 ([#602](https://github.com/pactus-project/pactus/pull/602))

## [0.13.0](https://github.com/pactus-project/pactus/compare/v0.12.0...v0.13.0)(2023-06-30)
## [0.13.0](https://github.com/pactus-project/pactus/compare/v0.12.0...v0.13.0) (2023-06-30)

### Fix

Expand All @@ -121,7 +144,7 @@

- implementing TestSuite ([#535](https://github.com/pactus-project/pactus/pull/535))

## [0.12.0](https://github.com/pactus-project/pactus/compare/v0.11.0...v0.12.0)(2023-06-19)
## [0.12.0](https://github.com/pactus-project/pactus/compare/v0.11.0...v0.12.0) (2023-06-19)

### Feat

Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Please follow these guidelines when contributing code to the project:

The following commands are available in the Makefile:

- `make build` compiles the code into executable binaries.
- `make devtools` installs required development tools.
- `make fmt` formats the code according to the Go standards.
- `make check` runs various checks on the code, including formatting and linting.
Expand Down
2 changes: 1 addition & 1 deletion docs/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Sometimes you may need to amend the changelog manually.
Then, add links to the CHANGELOG:

```bash
sed -E -i "s/## v${CUR_VER} /## [${CUR_VER}](https:\/\/github.com\/pactus-project\/pactus\/compare\/v${PRV_VER}...v${CUR_VER})/g" CHANGELOG.md
sed -E -i "s/## v${CUR_VER} /## [${CUR_VER}](https:\/\/github.com\/pactus-project\/pactus\/compare\/v${PRV_VER}...v${CUR_VER}) /g" CHANGELOG.md
sed -E -i 's/\(#([0-9]+)\)/([#\1](https:\/\/github.com\/pactus-project\/pactus\/pull\/\1))/g' CHANGELOG.md
```

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const (
major uint = 0
minor uint = 17
patch uint = 0
meta string = "beta"
meta string = ""
)

func Agent() string {
Expand Down

0 comments on commit b6ff47d

Please sign in to comment.