Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/tendermint/tm-db

go 1.12
go 1.16

require (
github.com/dgraph-io/badger/v2 v2.2007.3
Expand All @@ -16,3 +16,6 @@ require (
go.etcd.io/bbolt v1.3.6
google.golang.org/grpc v1.38.0
)

// Breaking changes were released with the wrong tag (use v0.6.6 or later).
retract v0.6.5
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

woah didnt know this was possible

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's a new feature with Go 1.16, but it is really helpful for cases like this. 🙂