Skip to content

Commit

Permalink
chore: Releasing version 0.12.0 (#520)
Browse files Browse the repository at this point in the history
  • Loading branch information
themantre authored Jun 19, 2023
1 parent 2141555 commit 7b0c9fe
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

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

### Feat

- add GetAccountByNumber API to get account by number ([#511](https://github.com/pactus-project/pactus/pull/511))

### Fix

- caching account and validator in store ([#513](https://github.com/pactus-project/pactus/pull/513))
- get recent blocks by stamp ([#509](https://github.com/pactus-project/pactus/pull/509))
- closing the mDNS connection upon stopping the network ([#508](https://github.com/pactus-project/pactus/pull/508))
- updating linkedmap to use generic ([#507](https://github.com/pactus-project/pactus/pull/507))
- removing state from cache ([#506](https://github.com/pactus-project/pactus/pull/506))
- Typo in GUI ([#499](https://github.com/pactus-project/pactus/pull/499))
- supporting localnet ([#492](https://github.com/pactus-project/pactus/pull/492))

### Refactor

- update total power calculation based on power change(deltas) ([#518](https://github.com/pactus-project/pactus/pull/518))
- GetValidators return all validators in state validators map ([#512](https://github.com/pactus-project/pactus/pull/512))

## [0.11.0](https://github.com/pactus-project/pactus/compare/v0.10.0...v0.11.0) (2023-05-29)

### Fix
Expand Down
4 changes: 2 additions & 2 deletions docs/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,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})/" 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 All @@ -68,7 +68,7 @@ Create a new PR against the `main` branch:

```bash
git checkout -b releasing_${CUR_VER}
git commit -a -m "chore: Releasing version ${CUR_VER}
git commit -a -m "chore: Releasing version ${CUR_VER}"
git push origin HEAD
```

Expand Down

0 comments on commit 7b0c9fe

Please sign in to comment.