Browse Source

version folder, rpc core version

pull/192/head
Ethan Buchman 8 years ago
parent
commit
77a66f079f
2 changed files with 12 additions and 0 deletions
  1. +5
    -0
      rpc/core/version.go
  2. +7
    -0
      version/version.go

+ 5
- 0
rpc/core/version.go View File

@ -0,0 +1,5 @@
package core
// a single integer is sufficient here
const Version = "2" // add DialSeeds; re-organize type bytes

+ 7
- 0
version/version.go View File

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

Loading…
Cancel
Save