int
This commit is contained in:
rigelrozanski 2017-03-30 01:59:46 -04:00 committed by Ethan Buchman
parent 6eb511670f
commit 18f1142d4c
3 changed files with 12 additions and 15 deletions

View File

@ -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:

View File

@ -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("")

View File

@ -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