Version & changelog
This commit is contained in:
parent
db7407f96e
commit
28a1b5ebc0
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,5 +1,13 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.21.1
|
||||||
|
|
||||||
|
*July 14th, 2018*
|
||||||
|
|
||||||
|
BUG FIXES
|
||||||
|
* [build] Added Ledger build support via `LEDGER_ENABLED=true|false`
|
||||||
|
* True by default except when cross-compiling
|
||||||
|
|
||||||
## 0.21.0
|
## 0.21.0
|
||||||
|
|
||||||
*July 13th, 2018*
|
*July 13th, 2018*
|
||||||
|
@ -24,8 +32,6 @@ BUG FIXES
|
||||||
* [keys] \#1629 - updating password no longer asks for a new password when the first entered password was incorrect
|
* [keys] \#1629 - updating password no longer asks for a new password when the first entered password was incorrect
|
||||||
* [lcd] importing an account would create a random account
|
* [lcd] importing an account would create a random account
|
||||||
* [server] 'gaiad init' command family now writes provided name as the moniker in `config.toml`
|
* [server] 'gaiad init' command family now writes provided name as the moniker in `config.toml`
|
||||||
* [build] Added Ledger build support via `LEDGER_ENABLED=true|false`
|
|
||||||
* True by default except when cross-compiling
|
|
||||||
|
|
||||||
## 0.20.0
|
## 0.20.0
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,9 @@ package version
|
||||||
|
|
||||||
const Maj = "0"
|
const Maj = "0"
|
||||||
const Min = "21"
|
const Min = "21"
|
||||||
const Fix = "0"
|
const Fix = "1"
|
||||||
|
|
||||||
const Version = "0.21.0"
|
const Version = "0.21.1"
|
||||||
|
|
||||||
// GitCommit set by build flags
|
// GitCommit set by build flags
|
||||||
var GitCommit = ""
|
var GitCommit = ""
|
||||||
|
|
Loading…
Reference in New Issue