Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1502 from hyperledger/0341
Browse files Browse the repository at this point in the history
Prepare 0.34.1
  • Loading branch information
Silas Davis committed Jul 9, 2021
2 parents 160f0fa + ef54d27 commit 137976e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
11 changes: 1 addition & 10 deletions NOTES.md
Original file line number Diff line number Diff line change
@@ -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

6 changes: 5 additions & 1 deletion project/history.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 137976e

Please sign in to comment.