Skip to content

Commit

Permalink
Merge pull request #84 from informalsystems/andy/v0.4.0
Browse files Browse the repository at this point in the history
New release v0.4.0
  • Loading branch information
andynog authored Dec 20, 2022
2 parents 9d7769e + 3b45b85 commit 7a2ab2d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# CHANGELOG

## v0.4.0
*December 20th, 2022*

### Highlights

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.

#### FEATURES

- Changed the way `EthAccount` account types are checked ([#63](https://github.com/informalsystems/multisig/pull/63))
- Added a new command to generate a withdraw-rewards transaction to claim validators' rewards and commission ([#65](https://github.com/informalsystems/multisig/pull/65))
- Added a new command to create a delegate transaction ([#66](https://github.com/informalsystems/multisig/pull/66))
- Allow `fees` and `gas` flags to be specified when creating a new transaction ([#70](https://github.com/informalsystems/multisig/pull/70))
- Added support for '/stride.vesting.StridePeriodicVestingAccount' ([#73](https://github.com/informalsystems/multisig/pull/73))
- Upgraded Cosmos SDK version (v0.45.9) and Golang version (v1.18) ([#80](https://github.com/informalsystems/multisig/pull/80))
- Implemented logic to add a --node flag to the multisig broadcast command ([#82](https://github.com/informalsystems/multisig/pull/82))
- Added logic to allow a user to specify a --key flag to the multisig broadcast command ([#83](https://github.com/informalsystems/multisig/pull/83))

#### BUG FIXES

- 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))

## v0.3.0
*September 8th, 2022*
### Highlights
Expand Down
2 changes: 1 addition & 1 deletion cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

// TODO: something more intelligent
// Remember to change this every time ...
const VERSION = "0.2.0"
const VERSION = "0.4.0"

var rootCmd = &cobra.Command{
Use: "multisig",
Expand Down

0 comments on commit 7a2ab2d

Please sign in to comment.