mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 23:02:16 +00:00
Merge pull request #2082 from tendermint/release/0.22.8
HotFix for 0.22.7, bump to 0.22.8
This commit is contained in:
commit
40d6dc2ee5
@ -1,5 +1,13 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.22.8
|
||||||
|
|
||||||
|
*July 26th, 2018*
|
||||||
|
|
||||||
|
BUG FIXES
|
||||||
|
|
||||||
|
- [consensus, blockchain] Fix 0.22.7 below.
|
||||||
|
|
||||||
## 0.22.7
|
## 0.22.7
|
||||||
|
|
||||||
*July 26th, 2018*
|
*July 26th, 2018*
|
||||||
|
@ -2,7 +2,6 @@ package blockchain
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/tendermint/go-amino"
|
"github.com/tendermint/go-amino"
|
||||||
cryptoAmino "github.com/tendermint/tendermint/crypto/encoding/amino"
|
|
||||||
"github.com/tendermint/tendermint/types"
|
"github.com/tendermint/tendermint/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -10,6 +9,5 @@ var cdc = amino.NewCodec()
|
|||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
RegisterBlockchainMessages(cdc)
|
RegisterBlockchainMessages(cdc)
|
||||||
cryptoAmino.RegisterAmino(cdc)
|
types.RegisterBlockAmino(cdc)
|
||||||
types.RegisterEvidences(cdc)
|
|
||||||
}
|
}
|
||||||
|
@ -2,13 +2,11 @@ package types
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/tendermint/go-amino"
|
"github.com/tendermint/go-amino"
|
||||||
cryptoAmino "github.com/tendermint/tendermint/crypto/encoding/amino"
|
|
||||||
"github.com/tendermint/tendermint/types"
|
"github.com/tendermint/tendermint/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
var cdc = amino.NewCodec()
|
var cdc = amino.NewCodec()
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
cryptoAmino.RegisterAmino(cdc)
|
types.RegisterBlockAmino(cdc)
|
||||||
types.RegisterEvidences(cdc)
|
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@ package consensus
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/tendermint/go-amino"
|
"github.com/tendermint/go-amino"
|
||||||
cryptoAmino "github.com/tendermint/tendermint/crypto/encoding/amino"
|
"github.com/tendermint/tendermint/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
var cdc = amino.NewCodec()
|
var cdc = amino.NewCodec()
|
||||||
@ -10,5 +10,5 @@ var cdc = amino.NewCodec()
|
|||||||
func init() {
|
func init() {
|
||||||
RegisterConsensusMessages(cdc)
|
RegisterConsensusMessages(cdc)
|
||||||
RegisterWALMessages(cdc)
|
RegisterWALMessages(cdc)
|
||||||
cryptoAmino.RegisterAmino(cdc)
|
types.RegisterBlockAmino(cdc)
|
||||||
}
|
}
|
||||||
|
@ -2,11 +2,11 @@ package files
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/tendermint/go-amino"
|
"github.com/tendermint/go-amino"
|
||||||
cryptoAmino "github.com/tendermint/tendermint/crypto/encoding/amino"
|
"github.com/tendermint/tendermint/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
var cdc = amino.NewCodec()
|
var cdc = amino.NewCodec()
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
cryptoAmino.RegisterAmino(cdc)
|
types.RegisterBlockAmino(cdc)
|
||||||
}
|
}
|
||||||
|
@ -2,12 +2,10 @@ package core_types
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/tendermint/go-amino"
|
"github.com/tendermint/go-amino"
|
||||||
cryptoAmino "github.com/tendermint/tendermint/crypto/encoding/amino"
|
|
||||||
"github.com/tendermint/tendermint/types"
|
"github.com/tendermint/tendermint/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
func RegisterAmino(cdc *amino.Codec) {
|
func RegisterAmino(cdc *amino.Codec) {
|
||||||
types.RegisterEventDatas(cdc)
|
types.RegisterEventDatas(cdc)
|
||||||
types.RegisterEvidences(cdc)
|
types.RegisterBlockAmino(cdc)
|
||||||
cryptoAmino.RegisterAmino(cdc)
|
|
||||||
}
|
}
|
||||||
|
@ -8,6 +8,10 @@ import (
|
|||||||
var cdc = amino.NewCodec()
|
var cdc = amino.NewCodec()
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
RegisterBlockAmino(cdc)
|
||||||
|
}
|
||||||
|
|
||||||
|
func RegisterBlockAmino(cdc *amino.Codec) {
|
||||||
cryptoAmino.RegisterAmino(cdc)
|
cryptoAmino.RegisterAmino(cdc)
|
||||||
RegisterEvidences(cdc)
|
RegisterEvidences(cdc)
|
||||||
}
|
}
|
||||||
|
@ -4,13 +4,13 @@ package version
|
|||||||
const (
|
const (
|
||||||
Maj = "0"
|
Maj = "0"
|
||||||
Min = "22"
|
Min = "22"
|
||||||
Fix = "7"
|
Fix = "8"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
// Version is the current version of Tendermint
|
// Version is the current version of Tendermint
|
||||||
// Must be a string because scripts like dist.sh read this file.
|
// Must be a string because scripts like dist.sh read this file.
|
||||||
Version = "0.22.7"
|
Version = "0.22.8"
|
||||||
|
|
||||||
// GitCommit is the current HEAD set using ldflags.
|
// GitCommit is the current HEAD set using ldflags.
|
||||||
GitCommit string
|
GitCommit string
|
||||||
|
Loading…
x
Reference in New Issue
Block a user