mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-03 03:35:19 +00:00
abci: Set version to 1.0.0 (#9341)
Signed-off-by: Thane Thomson <connect@thanethomson.com> Signed-off-by: Thane Thomson <connect@thanethomson.com>
This commit is contained in:
@@ -7,7 +7,7 @@ Tendermint Core.
|
||||
|
||||
### ABCI Changes
|
||||
|
||||
* The `ABCIVersion` is now `0.18.0`.
|
||||
* The `ABCIVersion` is now `1.0.0`.
|
||||
|
||||
* Added new ABCI methods `PrepareProposal` and `ProcessProposal`. For details,
|
||||
please see the [spec](spec/abci/README.md). Applications upgrading to
|
||||
|
||||
@@ -1,15 +1,13 @@
|
||||
package version
|
||||
|
||||
var (
|
||||
TMCoreSemVer = TMVersionDefault
|
||||
)
|
||||
var TMCoreSemVer = TMVersionDefault
|
||||
|
||||
const (
|
||||
// TMVersionDefault is the used as the fallback version of Tendermint Core
|
||||
// when not using git describe. It is formatted with semantic versioning.
|
||||
TMVersionDefault = "0.34.20"
|
||||
// ABCISemVer is the semantic version of the ABCI library
|
||||
ABCISemVer = "0.18.0"
|
||||
// ABCISemVer is the semantic version of the ABCI protocol
|
||||
ABCISemVer = "1.0.0"
|
||||
|
||||
ABCIVersion = ABCISemVer
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user