Merge PR #4198: Release v0.34.3

This commit is contained in:
Alexander Bezobchuk 2019-04-26 12:13:23 -04:00 committed by GitHub
parent 4a87f45bfe
commit 050f6a61ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 3 deletions

2
.github/CODEOWNERS vendored
View File

@ -1,4 +1,4 @@
# CODEOWNERS: https://help.github.com/articles/about-codeowners/ # CODEOWNERS: https://help.github.com/articles/about-codeowners/
# Primary repo maintainers # Primary repo maintainers
* @rigelrozanski @alexanderbez @jackzampolin @alessio @cwgoes * @rigelrozanski @alexanderbez @jackzampolin @alessio

View File

@ -1,5 +1,14 @@
# Changelog # Changelog
## 0.34.3
### Bug Fixes
#### Gaia
* [\#4196](https://github.com/cosmos/cosmos-sdk/pull/4196) Set default invariant
check period to zero.
## 0.34.2 ## 0.34.2
### Improvements ### Improvements

View File

@ -772,7 +772,7 @@ paths:
x-example: bonded x-example: bonded
- in: query - in: query
name: page name: page
description: The gage number. description: The page number.
type: integer type: integer
x-example: 1 x-example: 1
- in: query - in: query

View File

@ -57,7 +57,7 @@ func main() {
// prepare and add flags // prepare and add flags
executor := cli.PrepareBaseCmd(rootCmd, "GA", app.DefaultNodeHome) executor := cli.PrepareBaseCmd(rootCmd, "GA", app.DefaultNodeHome)
rootCmd.PersistentFlags().UintVar(&invCheckPeriod, flagInvCheckPeriod, rootCmd.PersistentFlags().UintVar(&invCheckPeriod, flagInvCheckPeriod,
1, "Assert registered invariants every N blocks") 0, "Assert registered invariants every N blocks")
err := executor.Execute() err := executor.Execute()
if err != nil { if err != nil {
// handle with #870 // handle with #870