-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* build: downgrade go to 1.19 * updates * updates
- Loading branch information
1 parent
d3eee7d
commit fab0ae0
Showing
6 changed files
with
17 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
# Changelog | ||
|
||
## [v1.0.2] - 2024-02-26 | ||
|
||
* Downgrade Go version in go.mod to 1.19 | ||
|
||
## [v1.0.1] - 2024-02-25 | ||
|
||
## [v1.0.0] - 2023-05-25 | ||
|
||
> Note this repository was forked from [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db). Minor modifications were made after the fork to better support the Cosmos SDK. Notably, this repo removes badger, boltdb and cleveldb. | ||
- added bloom filter: <https://github.com/cosmos/cosmos-db/pull/42/files> | ||
- Removed Badger & Boltdb | ||
- Add `NewBatchWithSize` to `DB` interface: <https://github.com/cosmos/cosmos-db/pull/64> | ||
- Add `NewRocksDBWithRaw` to support different rocksdb open mode (read-only, secondary-standby). | ||
* added bloom filter: <https://github.com/cosmos/cosmos-db/pull/42/files> | ||
* Removed Badger & Boltdb | ||
* Add `NewBatchWithSize` to `DB` interface: <https://github.com/cosmos/cosmos-db/pull/64> | ||
* Add `NewRocksDBWithRaw` to support different rocksdb open mode (read-only, secondary-standby). |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/cosmos/cosmos-db | ||
|
||
go 1.22 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/cockroachdb/pebble v1.1.0 | ||
|