This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
tendermint
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
221
Wiki
Activity
Browse Source
version: add and bump abci version
pull/2343/head
Ethan Buchman
6 years ago
parent
6fd79d1545
commit
54fe6ef73c
2 changed files
with
8 additions
and
5 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-5
abci/version/version.go
+3
-0
version/version.go
+ 5
- 5
abci/version/version.go
View File
@ -1,9 +1,9 @@
package
version
package
version
// NOTE: we should probably be versioning the ABCI and the abci-cli separately
import
(
"github.com/tendermint/tendermint/version"
)
const
Maj
=
"0"
const
Min
=
"12"
const
Fix
=
"0"
// TODO: eliminate this after some version refactor
const
Version
=
"0.12.0"
const
Version
=
version
.
ABCIVersion
+ 3
- 0
version/version.go
View File
@ -16,6 +16,9 @@ var (
GitCommit
string
GitCommit
string
)
)
// ABCIVersion is the version of the ABCI library
const
ABCIVersion
=
"0.14.0"
func
init
(
)
{
func
init
(
)
{
if
GitCommit
!=
""
{
if
GitCommit
!=
""
{
Version
+=
"-"
+
GitCommit
Version
+=
"-"
+
GitCommit
Write
Preview
Loading…
Cancel
Save