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:
Thane Thomson
2022-09-01 21:44:45 -04:00
committed by GitHub
parent 2ff11e5bc2
commit b055535397
2 changed files with 4 additions and 6 deletions

View File

@@ -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

View File

@@ -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
)