forked from TrueFiEng/Waffle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce changesets and bump 3.2.2 (TrueFiEng#428)
* Add changesets package * Add change set for 3.2.2 * Bump version to 3.2.2
- Loading branch information
1 parent
7ec1e0e
commit 28305d2
Showing
13 changed files
with
741 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Changesets | ||
|
||
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works | ||
with multi-package repos, or single-package repos to help you version and publish your code. You can | ||
find the full documentation for it [in our repository](https://github.com/changesets/changesets) | ||
|
||
We have a quick list of common questions to get you started engaging with this project in | ||
[our documentation](https://github.com/changesets/changesets/blob/master/docs/common-questions.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json", | ||
"changelog": "@changesets/cli/changelog", | ||
"commit": false, | ||
"linked": [], | ||
"access": "restricted", | ||
"baseBranch": "master", | ||
"updateInternalDependencies": "patch", | ||
"ignore": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
* Allow asserting events on previously executed transactions (#424) | ||
* Make BN matchers compatible with chai's lengthOf (#423) | ||
* expect().to.emit().withArgs() - add assertion for indexed dynamic size parameters (#413) | ||
* Add hexEqual matcher (#415) | ||
* Update types for matchers to explicitly return promises (#403) | ||
* Update dev dependencies, replace node 11 with 14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@ethereum-waffle/chai", | ||
"description": "A sweet set of chai matchers for your blockchain testing needs.", | ||
"version": "3.2.1", | ||
"version": "3.2.2", | ||
"author": "Marek Kirejczyk <[email protected]> (http://ethworks.io)", | ||
"repository": "[email protected]:EthWorks/Waffle.git", | ||
"private": false, | ||
|
@@ -35,9 +35,8 @@ | |
"node": ">=10.0" | ||
}, | ||
"dependencies": { | ||
"@ethereum-waffle/provider": "^3.2.1", | ||
"@ethereum-waffle/provider": "^3.2.2", | ||
"ethers": "^5.0.0" | ||
}, | ||
"devDependencies": { | ||
} | ||
"devDependencies": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "ethereum-waffle", | ||
"description": "Sweeter, faster and simpler than truffle.", | ||
"version": "3.2.1", | ||
"version": "3.2.2", | ||
"author": "Marek Kirejczyk <[email protected]> (http://ethworks.io)", | ||
"repository": "[email protected]:EthWorks/Waffle.git", | ||
"private": false, | ||
|
@@ -42,12 +42,11 @@ | |
"node": ">=10.0" | ||
}, | ||
"dependencies": { | ||
"@ethereum-waffle/chai": "^3.2.1", | ||
"@ethereum-waffle/compiler": "^3.2.1", | ||
"@ethereum-waffle/mock-contract": "^3.2.1", | ||
"@ethereum-waffle/provider": "^3.2.1", | ||
"@ethereum-waffle/chai": "^3.2.2", | ||
"@ethereum-waffle/compiler": "^3.2.2", | ||
"@ethereum-waffle/mock-contract": "^3.2.2", | ||
"@ethereum-waffle/provider": "^3.2.2", | ||
"ethers": "^5.0.1" | ||
}, | ||
"devDependencies": { | ||
} | ||
"devDependencies": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@ethereum-waffle/compiler", | ||
"description": "Compile solidity without the hassle.", | ||
"version": "3.2.1", | ||
"version": "3.2.2", | ||
"author": "Marek Kirejczyk <[email protected]> (http://ethworks.io)", | ||
"repository": "[email protected]:EthWorks/Waffle.git", | ||
"private": false, | ||
|
@@ -45,8 +45,8 @@ | |
"solc": "^0.6.3" | ||
}, | ||
"devDependencies": { | ||
"@ethereum-waffle/chai": "^3.2.1", | ||
"@ethereum-waffle/provider": "^3.2.1", | ||
"@ethereum-waffle/chai": "^3.2.2", | ||
"@ethereum-waffle/provider": "^3.2.2", | ||
"@openzeppelin/contracts": "3.0.1", | ||
"@types/fs-extra": "^9.0.4", | ||
"fs-extra": "^9.0.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@ethereum-waffle/ens", | ||
"version": "3.2.1", | ||
"version": "3.2.2", | ||
"description": "A mock ens implementation for testing.", | ||
"repository": "[email protected]:EthWorks/Waffle.git", | ||
"author": "Marek Kirejczyk <[email protected]> (http://ethworks.io)", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@ethereum-waffle/jest", | ||
"description": "A sweet set of jest matchers for your blockchain testing needs.", | ||
"version": "3.2.1", | ||
"version": "3.2.2", | ||
"author": "Adrian Li <[email protected]>", | ||
"repository": "[email protected]:EthWorks/Waffle.git", | ||
"private": false, | ||
|
@@ -36,7 +36,7 @@ | |
"node": ">=10.0" | ||
}, | ||
"dependencies": { | ||
"@ethereum-waffle/provider": "^3.2.1", | ||
"@ethereum-waffle/provider": "^3.2.2", | ||
"ethers": "^5.0.0", | ||
"jest-diff": "^26.0.1" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@ethereum-waffle/mock-contract", | ||
"description": "Mock smart contracts in a smart way.", | ||
"version": "3.2.1", | ||
"version": "3.2.2", | ||
"author": "Marek Kirejczyk <[email protected]> (http://ethworks.io)", | ||
"repository": "[email protected]:EthWorks/Waffle.git", | ||
"private": false, | ||
|
@@ -44,8 +44,8 @@ | |
"ethers": "^5.0.1" | ||
}, | ||
"devDependencies": { | ||
"@ethereum-waffle/chai": "^3.2.1", | ||
"@ethereum-waffle/compiler": "^3.2.1", | ||
"@ethereum-waffle/provider": "^3.2.1" | ||
"@ethereum-waffle/chai": "^3.2.2", | ||
"@ethereum-waffle/compiler": "^3.2.2", | ||
"@ethereum-waffle/provider": "^3.2.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@ethereum-waffle/provider", | ||
"description": "A mock provider for your blockchain testing needs.", | ||
"version": "3.2.1", | ||
"version": "3.2.2", | ||
"author": "Marek Kirejczyk <[email protected]> (http://ethworks.io)", | ||
"repository": "[email protected]:EthWorks/Waffle.git", | ||
"private": false, | ||
|
@@ -35,7 +35,7 @@ | |
"node": ">=10.0" | ||
}, | ||
"dependencies": { | ||
"@ethereum-waffle/ens": "^3.2.1", | ||
"@ethereum-waffle/ens": "^3.2.2", | ||
"ethers": "^5.0.1", | ||
"ganache-core": "^2.10.2", | ||
"patch-package": "^6.2.2", | ||
|
@@ -44,6 +44,5 @@ | |
"resolutions": { | ||
"web3": "1.2.4" | ||
}, | ||
"devDependencies": { | ||
} | ||
"devDependencies": {} | ||
} |
Oops, something went wrong.