-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add sdkch to maintain PENDING.md effectively and free of file conflicts
Closes: #2380
- Loading branch information
Showing
14 changed files
with
387 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
...3837-Fix-WithdrawValidatorCommission-to-properly-set-the-validator-s-remaining-commission
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#3837 Fix `WithdrawValidatorCommission` to properly set the validator's remaining commission. |
1 change: 1 addition & 0 deletions
1
.pending/features/sdk/3813-New-sdk-NewCoins-safe-constructor-to-replace-bare
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#3813 New sdk.NewCoins safe constructor to replace bare sdk.Coins{} declarations. |
1 change: 1 addition & 0 deletions
1
.pending/improvements/gaia/3808-gaiad-and-gaiacli-integration-tests-use-build-binaries
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#3808 `gaiad` and `gaiacli` integration tests use ./build/ binaries. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#3841 Add indent to JSON of `gaiacli keys [add|show|list]` |
1 change: 1 addition & 0 deletions
1
.pending/improvements/gaiacli/3859-Add-newline-to-echo-of-gaiacli-keys
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#3859 Add newline to echo of `gaiacli keys ...` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#3801 `baseapp` safety improvements |
1 change: 1 addition & 0 deletions
1
.pending/improvements/sdk/3820-Make-Coins-IsAllGT-more-robust-and-consistent
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#3820 Make Coins.IsAllGT() more robust and consistent. |
1 change: 1 addition & 0 deletions
1
.pending/improvements/sdk/3828-New-sdkch-tool-to-maintain-changelogs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#3828 New sdkch tool to maintain changelogs |
1 change: 1 addition & 0 deletions
1
.pending/improvements/sdk/3864-Make-Coins-IsAllGTE-more-consistent
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#3864 Make Coins.IsAllGTE() more consistent. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# sdkch | ||
Simple tool to maintain modular changelogs | ||
|
||
# Usage | ||
|
||
``` | ||
$ sdkch -help | ||
usage: sdkch [-d directory] [-prune] command | ||
Maintain unreleased changelog entries in a modular fashion. | ||
Commands: | ||
add section stanza [message] Add an entry file. | ||
If message is empty, start the editor to edit | ||
the message. | ||
generate [version] Generate a changelog in Markdown format and print | ||
it to STDOUT. version defaults to UNRELEASED. | ||
Sections Stanzas | ||
--- --- | ||
breaking gaia | ||
features gaiacli | ||
improvements gaiarest | ||
bugfixes sdk | ||
tendermint | ||
Flags: | ||
-d string | ||
entry files directory (default "/home/alessio/work/tendermint/src/github.com/cosmos/cosmos-sdk/.pending") | ||
-prune | ||
prune old entries after changelog generation | ||
``` | ||
|
||
## Add a new entry | ||
|
||
You can either drop a text file in the appropriate directory or use the `add` command: | ||
|
||
```bash | ||
$ sdkch add features gaiacli '#3452 New cool gaiacli command' | ||
``` | ||
|
||
If no message is provided, a new entry file is opened in an editor is started | ||
|
||
## Generate the full changelog | ||
|
||
```bash | ||
$ sdkch generate v0.30.0 | ||
``` | ||
|
||
The `-prune` flag would remove the old entry files after the changelog is generated. |
Oops, something went wrong.