Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
liamsi authored Mar 13, 2019
2 parents 40f9538 + 2f35d30 commit ed33c20
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.12.2 (March 13, 2019)

IMPROVEMENTS

- Use Tendermint v0.30.2 and close batch after write (related pull request in Tendermint: https://github.com/tendermint/tendermint/pull/3397)


## 0.12.1 (February 12, 2019)

IMPROVEMENTS
Expand Down
6 changes: 3 additions & 3 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

[[constraint]]
name = "github.com/tendermint/tendermint"
version = "v0.30.0"
version = "v0.30.2"

[prune]
go-tests = true
Expand Down
1 change: 1 addition & 0 deletions nodedb.go
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ func (ndb *nodeDB) Commit() {
defer ndb.mtx.Unlock()

ndb.batch.Write()
ndb.batch.Close()
ndb.batch = ndb.db.NewBatch()
}

Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package iavl

// Version of iavl.
const Version = "0.12.1"
const Version = "0.12.2"

0 comments on commit ed33c20

Please sign in to comment.