diff --git a/rpc/core/version.go b/rpc/core/version.go new file mode 100644 index 00000000..0890da87 --- /dev/null +++ b/rpc/core/version.go @@ -0,0 +1,5 @@ +package core + +// a single integer is sufficient here + +const Version = "2" // add DialSeeds; re-organize type bytes diff --git a/version/version.go b/version/version.go new file mode 100644 index 00000000..eccabb79 --- /dev/null +++ b/version/version.go @@ -0,0 +1,7 @@ +package version + +const Maj = "0" +const Min = "6" // tmsp refactor +const Fix = "0" + +const Version = Maj + "." + Min + "." + Fix