Skip to content

Commit

Permalink
Release v0.8.0 (#55)
Browse files Browse the repository at this point in the history
* Rename section for Go compiler update changelog entry

Signed-off-by: Thane Thomson <connect@thanethomson.com>

* Add link to PR for grocksdb dependency update

Signed-off-by: Thane Thomson <connect@thanethomson.com>

* Prepare v0.8.0 release in changelog

Signed-off-by: Thane Thomson <connect@thanethomson.com>

* Build changelog

Signed-off-by: Thane Thomson <connect@thanethomson.com>

* go.mod: Remove unused replace directive

Signed-off-by: Thane Thomson <connect@thanethomson.com>

* Remove unnecessary coverage file

Signed-off-by: Thane Thomson <connect@thanethomson.com>

* .gitignore: Ignore code coverage artifacts

Signed-off-by: Thane Thomson <connect@thanethomson.com>

* Update release date

Signed-off-by: Thane Thomson <connect@thanethomson.com>

---------

Signed-off-by: Thane Thomson <connect@thanethomson.com>
  • Loading branch information
thanethomson committed Apr 26, 2023
1 parent cea6dcf commit 1b1d8ed
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 5 deletions.
1 change: 0 additions & 1 deletion .changelog/unreleased/dependencies/42-use-grocksdb.md

This file was deleted.

2 changes: 2 additions & 0 deletions .changelog/v0.8.0/dependencies/42-use-grocksdb.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Switch rocksdb binding from gorocksdb to grocksdb, bump librocksdb dependency
to `v7.10.2` ([\#42](https://github.com/cometbft/cometbft-db/pull/42))
11 changes: 11 additions & 0 deletions .changelog/v0.8.0/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
*Apr 26, 2023*

This release bumps the supported version of RocksDB, which requires cometbft-db
RocksDB users to update their builds (and hence requires a "major" release, but
does not introduce any other breaking changes). Special thanks to @yihuang for
this update!

While the minimum supported version of the Go compiler was bumped to 1.19, no
1.19-specific code changes were introduced and this should, therefore, still be
able to be compiled with earlier versions of Go. It is, however, recommended to
upgrade to the latest version(s) of Go ASAP.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@

.idea
vendor/*

# Code coverage
coverage.txt
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# CHANGELOG

## v0.8.0

*Apr 26, 2023*

This release bumps the supported version of RocksDB, which requires cometbft-db
RocksDB users to update their builds (and hence requires a "major" release, but
does not introduce any other breaking changes). Special thanks to @yihuang for
this update!

While the minimum supported version of the Go compiler was bumped to 1.19, no
1.19-specific code changes were introduced and this should, therefore, still be
able to be compiled with earlier versions of Go. It is, however, recommended to
upgrade to the latest version(s) of Go ASAP.

### COMPILER

- Bump minimum Go version to 1.19
([\#40](https://github.com/cometbft/cometbft-db/pull/40))

### DEPENDENCIES

- Update to the latest version of golang.org/x/net
([\#40](https://github.com/cometbft/cometbft-db/pull/40))
- Switch rocksdb binding from gorocksdb to grocksdb, bump librocksdb dependency
to `v7.10.2` ([\#42](https://github.com/cometbft/cometbft-db/pull/42))

## v0.7.0

*Jan 17, 2023*
Expand Down
4 changes: 0 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,3 @@ require (

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

// Note: gorocksdb bindings for OptimisticTransactionDB are not merged upstream, so we use a fork
// See https://github.com/tecbot/gorocksdb/pull/216
replace github.com/tecbot/gorocksdb => github.com/cosmos/gorocksdb v1.1.1

0 comments on commit 1b1d8ed

Please sign in to comment.