diff --git a/CHANGELOG.md b/CHANGELOG.md index 72227c805..274ca3ba4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # [Hyperledger Burrow](https://github.com/hyperledger/burrow) Changelog +## [0.34.4] - 2021-07-23 +### Changed +- [JS] Make deploy and deployContract take deps argument consisting of deployment options and library object. The library object makes it easier to pass an identical object with the addresses of commonly used libraries under their canonical names. + + ## [0.34.3] - 2021-07-19 ### Fixed - [JS] Fix spelling of 'contractName' in solts, add contract name to contract object. @@ -807,6 +812,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.4]: https://github.com/hyperledger/burrow/compare/v0.34.3...v0.34.4 [0.34.3]: https://github.com/hyperledger/burrow/compare/v0.34.2...v0.34.3 [0.34.2]: https://github.com/hyperledger/burrow/compare/v0.34.1...v0.34.2 [0.34.1]: https://github.com/hyperledger/burrow/compare/v0.34.0...v0.34.1 diff --git a/NOTES.md b/NOTES.md index dfd97c51f..1adbb003e 100644 --- a/NOTES.md +++ b/NOTES.md @@ -1,6 +1,3 @@ -### Fixed -- [JS] Fix spelling of 'contractName' in solts, add contract name to contract object. - -### Added -- [JS] Added option to build.ts code generation to not fail on Solidity compiler warnings, which is now the default. Warnings are still logged to stderr +### Changed +- [JS] Make deploy and deployContract take deps argument consisting of deployment options and library object. The library object makes it easier to pass an identical object with the addresses of commonly used libraries under their canonical names.