Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Accept web3 1.2.0 as valid version #63

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 6 additions & 2 deletions .travis.yml
Expand Up @@ -21,8 +21,12 @@ jobs:
script: npm run test

- stage: Integration tests
name: "Truffle 5.x"
script: ./test-integration/simple-project-truffle-5.x/run.sh
name: "Truffle 5.0.1"
script: ./test-integration/simple-project-truffle-5.0.1/run.sh

- stage: Integration tests
name: "Truffle with web3 1.2.0"
script: ./test-integration/simple-project-truffle-web3-1.2.0/run.sh

- stage: Integration tests
name: "Ganache Core 2.1.x"
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
# Changelog

## 0.4.1 (unreleased)
* Added support for web3 ^1.2.0 (included by truffle v5.0.29). ([#63](https://github.com/OpenZeppelin/openzeppelin-test-helpers/pull/63))

## 0.4.0 (2019-05-23)
* Fixed `shouldFail.reverting.withMessage` on non-Ganache chains. ([#25](https://github.com/OpenZeppelin/openzeppelin-test-helpers/pull/25))
* Fixed `send.transaction` not working on contracts with a fallback function. ([#26](https://github.com/OpenZeppelin/openzeppelin-test-helpers/pull/26))
Expand Down