From ef54d27dc57454341a5c599fa49301f1676eb0e6 Mon Sep 17 00:00:00 2001 From: Silas Davis Date: Fri, 9 Jul 2021 14:13:13 +0200 Subject: [PATCH] Prepare 0.34.1 Signed-off-by: Silas Davis --- CHANGELOG.md | 6 ++++++ NOTES.md | 11 +---------- project/history.go | 6 +++++- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e16854cd7..609368711 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # [Hyperledger Burrow](https://github.com/hyperledger/burrow) Changelog +## [0.34.1] - 2021-07-09 +### Fixed +- [JS] build function does not swallow errors without a formattedMessage, chdir into basepath before build so solc imports work as expected + + ## [0.34.0] - 2021-05-28 ### Changed - [JS] Provider interface no longer depends on GRPC types to improve compatibility between versions of Burrow.js and ease of extension @@ -789,6 +794,7 @@ This release marks the start of Eris-DB as the full permissioned blockchain node - [Blockchain] Fix getBlocks to respect block height cap. +[0.34.1]: https://github.com/hyperledger/burrow/compare/v0.34.0...v0.34.1 [0.34.0]: https://github.com/hyperledger/burrow/compare/v0.33.1...v0.34.0 [0.33.1]: https://github.com/hyperledger/burrow/compare/v0.33.0...v0.33.1 [0.33.0]: https://github.com/hyperledger/burrow/compare/v0.32.1...v0.33.0 diff --git a/NOTES.md b/NOTES.md index 63637952d..ca4a97ed5 100644 --- a/NOTES.md +++ b/NOTES.md @@ -1,12 +1,3 @@ -### Changed -- [JS] Provider interface no longer depends on GRPC types to improve compatibility between versions of Burrow.js and ease of extension -- [JS] Use non-unique marker interface to indicate stream cancellation in event reducer (again for compatibility between versions and extensibility) -- [Go] Upgrade to Go 1.16 - ### Fixed -- [JS] Fix codegen silently swallowing collisions of abi files (renamed from .bin to .abi) and use hierarchical directory structure to further reduce chance of collision -- [JS] Just depende on @ethersproject/abi rather than entire umbrella project - -### Added -- [JS] Include deployedBycode and optionally submit ABI's to Burrow's contract metadata store on deploy +- [JS] build function does not swallow errors without a formattedMessage, chdir into basepath before build so solc imports work as expected diff --git a/project/history.go b/project/history.go index 714680ce1..5746c6a33 100644 --- a/project/history.go +++ b/project/history.go @@ -47,7 +47,11 @@ func FullVersion() string { // To cut a new release add a release to the front of this slice then run the // release tagging script: ./scripts/tag_release.sh var History relic.ImmutableHistory = relic.NewHistory("Hyperledger Burrow", "https://github.com/hyperledger/burrow"). - MustDeclareReleases("0.34.0 - 2021-05-28", + MustDeclareReleases("0.34.1 - 2021-07-09", + `### Fixed +- [JS] build function does not swallow errors without a formattedMessage, chdir into basepath before build so solc imports work as expected +`, + "0.34.0 - 2021-05-28", `### Changed - [JS] Provider interface no longer depends on GRPC types to improve compatibility between versions of Burrow.js and ease of extension - [JS] Use non-unique marker interface to indicate stream cancellation in event reducer (again for compatibility between versions and extensibility)