1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-06-28 20:21:47 +00:00
Files
.github
DOCKER
benchmarks
blockchain
cmd
config
consensus
docs
mempool
node
p2p
proxy
rpc
client
core
grpc
lib
client
server
test
types
Dockerfile
Makefile
README.md
circle.yml
rpc_test.go
version.go
test
scripts
state
test
types
version
.codecov.yml
.editorconfig
.gitignore
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
INSTALL.md
LICENSE
Makefile
README.md
Vagrantfile
circle.yml
glide.lock
glide.yaml
tendermint/rpc/lib/version.go

8 lines
106 B
Go
Raw Normal View History

2016-01-12 16:50:06 -05:00
package rpc
2016-01-20 11:36:31 -05:00
const Maj = "0"
2017-04-19 00:05:18 -04:00
const Min = "7"
const Fix = "0"
2016-01-20 11:36:31 -05:00
const Version = Maj + "." + Min + "." + Fix