parent
6eb511670f
commit
18f1142d4c
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,5 +1,15 @@
|
|||
# Changelog
|
||||
|
||||
## 0.4.0 (March 30, 2017)
|
||||
|
||||
BREAKING CHANGES:
|
||||
|
||||
- CLI now uses Cobra
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
||||
- `basecoin init` doesn't generate error if already initialized
|
||||
|
||||
## 0.3.1 (March 23, 2017)
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
|
|
@ -20,19 +20,6 @@ var (
|
|||
}
|
||||
)
|
||||
|
||||
//flags
|
||||
//var chainIDFlag string
|
||||
|
||||
//func init() {
|
||||
//
|
||||
// //register flags
|
||||
// flags := []Flag2Register{
|
||||
// {&chainIDFlag, "chain_id", "test_chain_id", "ID of the chain for replay protection"},
|
||||
// }
|
||||
// RegisterFlags(InitCmd, flags)
|
||||
//
|
||||
//}
|
||||
|
||||
func initCmd(cmd *cobra.Command, args []string) {
|
||||
rootDir := BasecoinRoot("")
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package version
|
||||
|
||||
const Maj = "0"
|
||||
const Min = "3"
|
||||
const Fix = "1"
|
||||
const Min = "4"
|
||||
const Fix = "0"
|
||||
|
||||
const Version = Maj + "." + Min + "." + Fix
|
||||
|
|
Loading…
Reference in New Issue