-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
Alessio Treglia
committed
Mar 12, 2019
1 parent
f97e85e
commit c8180a7
Showing
11 changed files
with
376 additions
and
74 deletions.
There are no files selected for viewing
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. |
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 |
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,51 @@ | ||
# sdkch | ||
Simple tool to maintain modular changelogs | ||
|
||
# Usage | ||
|
||
``` | ||
$ sdkch -help | ||
usage: sdkch COMMAND | ||
Maintain unreleased changelog entries in a modular fashion. | ||
Commands: | ||
init | ||
add SECTION STANZA Add an entry file. | ||
Read from stdin until it | ||
encounters EOF. | ||
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 "./.pending") | ||
``` | ||
|
||
## 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 | ||
``` | ||
|
||
The `-prune` flag would remove the old entry files after the changelog is generated. |
Oops, something went wrong.