version folder, rpc core version

This commit is contained in:
Ethan Buchman
2016-01-20 16:25:26 -05:00
parent 3cce757adc
commit 77a66f079f
2 changed files with 12 additions and 0 deletions

7
version/version.go Normal file
View File

@ -0,0 +1,7 @@
package version
const Maj = "0"
const Min = "6" // tmsp refactor
const Fix = "0"
const Version = Maj + "." + Min + "." + Fix