Skip to content

Commit ca0c7b5

Browse files
authored
chore(release): releasing version 1.6.0 (#1595)
1 parent a9f25bc commit ca0c7b5

File tree

2 files changed

+35
-2
lines changed

2 files changed

+35
-2
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# Changelog
22

3+
## [1.6.0](https://github.com/pactus-project/pactus/compare/v1.5.0...v1.6.0) (2024-11-14)
4+
5+
### Feat
6+
7+
- **grpc**: add bls public key and signature aggregate methods ([#1587](https://github.com/pactus-project/pactus/pull/1587))
8+
- **wallet**: create single ed25519 reward address for all validators ([#1570](https://github.com/pactus-project/pactus/pull/1570))
9+
- **gtk**: add fee entry for transfer, bond and withdraw ([#1575](https://github.com/pactus-project/pactus/pull/1575))
10+
- **txpool**: add consumptional fee model ([#1572](https://github.com/pactus-project/pactus/pull/1572))
11+
- **txpool**: calculate consumption when committing a new block ([#1554](https://github.com/pactus-project/pactus/pull/1554))
12+
- **sync**: add metric to track the network activity ([#1552](https://github.com/pactus-project/pactus/pull/1552))
13+
- **wallet**: add wallet service API ([#1548](https://github.com/pactus-project/pactus/pull/1548))
14+
- **config**: add consumption fee configs ([#1547](https://github.com/pactus-project/pactus/pull/1547))
15+
16+
### Fix
17+
18+
- **config**: update TOML parser ([#1592](https://github.com/pactus-project/pactus/pull/1592))
19+
- **gtk**: prevent duplicate address on enter signal in create modal ([#1590](https://github.com/pactus-project/pactus/pull/1590))
20+
- **txpool, cmd, gtk**: broadcast transactions with zero fee ([#1589](https://github.com/pactus-project/pactus/pull/1589))
21+
- **consensus**: send decided vote for previous round on query vote ([#1567](https://github.com/pactus-project/pactus/pull/1567))
22+
- **grpc**: get tx pool content filter by payload type ([#1581](https://github.com/pactus-project/pactus/pull/1581))
23+
- **wallet, cmd**: add support for importing Ed25519 private keys ([#1584](https://github.com/pactus-project/pactus/pull/1584))
24+
- **gtk**: change transactions to transaction in tx link ([#1580](https://github.com/pactus-project/pactus/pull/1580))
25+
- **grpc**: set Bond public key for decoded transaction ([#1577](https://github.com/pactus-project/pactus/pull/1577))
26+
- **other**: add varnamelen linter to improve name convention ([#1568](https://github.com/pactus-project/pactus/pull/1568))
27+
- **grpc**: encode data and signature properly ([#1538](https://github.com/pactus-project/pactus/pull/1538))
28+
- **gtk**: change some text in GUI and pruned position ([#1536](https://github.com/pactus-project/pactus/pull/1536))
29+
30+
### Refactor
31+
32+
- **cmd**: get first account address from wallet as reward address ([#1594](https://github.com/pactus-project/pactus/pull/1594))
33+
- **grpc**: revert GetRawTransfer method and undo deprecation ([#1560](https://github.com/pactus-project/pactus/pull/1560))
34+
- **crypto**: define SerializeSize for PublicKey and Signature ([#1534](https://github.com/pactus-project/pactus/pull/1534))
35+
336
## [1.5.0](https://github.com/pactus-project/pactus/compare/v1.4.0...v1.5.0) (2024-10-08)
437

538
### Feat

version/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ var NodeVersion = Version{
1616
Major: 1,
1717
Minor: 6,
1818
Patch: 0,
19-
Meta: "beta",
20-
Alias: "",
19+
Meta: "",
20+
Alias: "Mumbai",
2121
}
2222

2323
// Version defines the version of Pactus software.

0 commit comments

Comments
 (0)