Skip to content

Commit 7a2ab2d

Browse files
authored
Merge pull request #84 from informalsystems/andy/v0.4.0
New release v0.4.0
2 parents 9d7769e + 3b45b85 commit 7a2ab2d

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

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

3+
## v0.4.0
4+
*December 20th, 2022*
5+
6+
### Highlights
7+
8+
This major release implements a couple new transaction commands and adds additional flags to improve the flexibility when adding new transactions such as ability to specify gas and fees.
9+
10+
#### FEATURES
11+
12+
- Changed the way `EthAccount` account types are checked ([#63](https://github.com/informalsystems/multisig/pull/63))
13+
- Added a new command to generate a withdraw-rewards transaction to claim validators' rewards and commission ([#65](https://github.com/informalsystems/multisig/pull/65))
14+
- Added a new command to create a delegate transaction ([#66](https://github.com/informalsystems/multisig/pull/66))
15+
- Allow `fees` and `gas` flags to be specified when creating a new transaction ([#70](https://github.com/informalsystems/multisig/pull/70))
16+
- Added support for '/stride.vesting.StridePeriodicVestingAccount' ([#73](https://github.com/informalsystems/multisig/pull/73))
17+
- Upgraded Cosmos SDK version (v0.45.9) and Golang version (v1.18) ([#80](https://github.com/informalsystems/multisig/pull/80))
18+
- Implemented logic to add a --node flag to the multisig broadcast command ([#82](https://github.com/informalsystems/multisig/pull/82))
19+
- Added logic to allow a user to specify a --key flag to the multisig broadcast command ([#83](https://github.com/informalsystems/multisig/pull/83))
20+
21+
#### BUG FIXES
22+
23+
- Refactored the logic to delete files from S3. Now when pushing (--force) tx files, all existing files in the path will be deleted first ([#74](https://github.com/informalsystems/multisig/pull/74))
24+
325
## v0.3.0
426
*September 8th, 2022*
527
### Highlights

cmd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
// TODO: something more intelligent
99
// Remember to change this every time ...
10-
const VERSION = "0.2.0"
10+
const VERSION = "0.4.0"
1111

1212
var rootCmd = &cobra.Command{
1313
Use: "multisig",

0 commit comments

Comments
 (0)