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

Commit 137976e

Browse files
author
Silas Davis
authored
Merge pull request #1502 from hyperledger/0341
Prepare 0.34.1
2 parents 160f0fa + ef54d27 commit 137976e

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# [Hyperledger Burrow](https://github.com/hyperledger/burrow) Changelog
2+
## [0.34.1] - 2021-07-09
3+
### Fixed
4+
- [JS] build function does not swallow errors without a formattedMessage, chdir into basepath before build so solc imports work as expected
5+
6+
27
## [0.34.0] - 2021-05-28
38
### Changed
49
- [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
789794
- [Blockchain] Fix getBlocks to respect block height cap.
790795

791796

797+
[0.34.1]: https://github.com/hyperledger/burrow/compare/v0.34.0...v0.34.1
792798
[0.34.0]: https://github.com/hyperledger/burrow/compare/v0.33.1...v0.34.0
793799
[0.33.1]: https://github.com/hyperledger/burrow/compare/v0.33.0...v0.33.1
794800
[0.33.0]: https://github.com/hyperledger/burrow/compare/v0.32.1...v0.33.0

NOTES.md

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
### Changed
2-
- [JS] Provider interface no longer depends on GRPC types to improve compatibility between versions of Burrow.js and ease of extension
3-
- [JS] Use non-unique marker interface to indicate stream cancellation in event reducer (again for compatibility between versions and extensibility)
4-
- [Go] Upgrade to Go 1.16
5-
61
### Fixed
7-
- [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
8-
- [JS] Just depende on @ethersproject/abi rather than entire umbrella project
9-
10-
### Added
11-
- [JS] Include deployedBycode and optionally submit ABI's to Burrow's contract metadata store on deploy
2+
- [JS] build function does not swallow errors without a formattedMessage, chdir into basepath before build so solc imports work as expected
123

project/history.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,11 @@ func FullVersion() string {
4747
// To cut a new release add a release to the front of this slice then run the
4848
// release tagging script: ./scripts/tag_release.sh
4949
var History relic.ImmutableHistory = relic.NewHistory("Hyperledger Burrow", "https://github.com/hyperledger/burrow").
50-
MustDeclareReleases("0.34.0 - 2021-05-28",
50+
MustDeclareReleases("0.34.1 - 2021-07-09",
51+
`### Fixed
52+
- [JS] build function does not swallow errors without a formattedMessage, chdir into basepath before build so solc imports work as expected
53+
`,
54+
"0.34.0 - 2021-05-28",
5155
`### Changed
5256
- [JS] Provider interface no longer depends on GRPC types to improve compatibility between versions of Burrow.js and ease of extension
5357
- [JS] Use non-unique marker interface to indicate stream cancellation in event reducer (again for compatibility between versions and extensibility)

0 commit comments

Comments
 (0)