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

Commit

Permalink
Prep for 0.34.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Silas Davis <silas@monax.io>
  • Loading branch information
Silas Davis committed May 28, 2021
1 parent df51a82 commit e87138a
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# [Hyperledger Burrow](https://github.com/hyperledger/burrow) Changelog
## [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)
- [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


## [0.33.1] - 2021-05-24
### Fixed
- [JS] Return bytesNN as Buffer to agree with typings
Expand Down Expand Up @@ -775,6 +789,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.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
[0.32.1]: https://github.com/hyperledger/burrow/compare/v0.32.0...v0.32.1
Expand Down
10 changes: 8 additions & 2 deletions NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
### 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] Return bytesNN as Buffer to agree with typings
- [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] Inline sources and source maps
- [JS] Include deployedBycode and optionally submit ABI's to Burrow's contract metadata store on deploy

15 changes: 14 additions & 1 deletion project/history.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,20 @@ 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.33.1 - 2021-05-24",
MustDeclareReleases("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)
- [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
`,
"0.33.1 - 2021-05-24",
`### Fixed
- [JS] Return bytesNN as Buffer to agree with typings
Expand Down

0 comments on commit e87138a

Please sign in to comment.