Skip to content

Commit

Permalink
Updated dist files.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Jun 28, 2019
1 parent 0e78386 commit d55ce00
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 19 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,20 @@ Changelog

This change log is managed by `scripts/cmds/update-versions` but may be manually updated.

ethers/v5.0.0-beta.142 (2019-06-28 16:13)
-----------------------------------------

- Do not require a Signer for contract.populateTransaction. ([0e78386](https://github.com/ethers-io/ethers.js/commit/0e78386a08d3d3a0a98c8d03cd665b8992ab3ea2))
- Bumping version of solc to 0.5.9. ([e2da447](https://github.com/ethers-io/ethers.js/commit/e2da447c7bc05937966bc4909c47291e4819d2a9))

ethers/v5.0.0-beta.141 (2019-06-24 21:25)
-----------------------------------------

- Fix non-ES6 import in keccak256. ([5eb393d](https://github.com/ethers-io/ethers.js/commit/5eb393d828328b34567566d3c0d622b4aef1e202))
- Refactored wordlist exports to export Wordlist directly. ([746d255](https://github.com/ethers-io/ethers.js/commit/746d255b741844b615583b2de3ffd07631b4e872))

ethers/v5.0.0-beta.140 (2019-06-12 01:25)
----------------------------------------
-----------------------------------------

- Move from node-fetch to cross-fetch; better browser fallback implementation. ([826ffbc](https://github.com/ethers-io/ethers.js/commit/826ffbc7c4ed1c301f30e6f264eedeaf3c243ca8))
- Added getStatic with support for inheritance of static methods. ([5e4535e](https://github.com/ethers-io/ethers.js/commit/5e4535e939fdb9d9d23bd14b3e2590873d3eb508))
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/_version.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export declare const version = "5.0.0-beta.132";
export declare const version = "5.0.0-beta.133";
2 changes: 1 addition & 1 deletion packages/contracts/_version.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = "5.0.0-beta.132";
exports.version = "5.0.0-beta.133";
6 changes: 3 additions & 3 deletions packages/contracts/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,12 @@ function runMethod(contract, functionName, options) {
method: method.format()
});
}
if (!contract.signer) {
errors.throwError("sending a transaction require a signer", errors.UNSUPPORTED_OPERATION, { operation: "sendTransaction" });
}
if (options.transaction) {
return properties_1.resolveProperties(tx);
}
if (!contract.signer) {
errors.throwError("sending a transaction require a signer", errors.UNSUPPORTED_OPERATION, { operation: "sendTransaction" });
}
return contract.signer.sendTransaction(tx).then(function (tx) {
var wait = tx.wait.bind(tx);
tx.wait = function (confirmations) {
Expand Down
4 changes: 2 additions & 2 deletions packages/contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethersproject/contracts",
"version": "5.0.0-beta.132",
"version": "5.0.0-beta.133",
"description": "Error utility functions for ethers.",
"main": "index.js",
"scripts": {
Expand All @@ -27,5 +27,5 @@
"publishConfig": {
"access": "public"
},
"tarballHash": "0x92ac81d787734c2c5d35e449c515f0f57fdb6aa7db138e6f6599ddcfb2e09269"
"tarballHash": "0x36273887374b3b52f35f3d051b3851d6cb121cfb4c3ead3a2b269a115aaee88e"
}
2 changes: 1 addition & 1 deletion packages/contracts/src.ts/_version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = "5.0.0-beta.132";
export const version = "5.0.0-beta.133";
2 changes: 1 addition & 1 deletion packages/ethers/_version.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export declare const version = "5.0.0-beta.141";
export declare const version = "5.0.0-beta.142";
2 changes: 1 addition & 1 deletion packages/ethers/_version.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = "5.0.0-beta.141";
exports.version = "5.0.0-beta.142";
8 changes: 4 additions & 4 deletions packages/ethers/dist/ethers.js
Original file line number Diff line number Diff line change
Expand Up @@ -12964,12 +12964,12 @@ function runMethod(contract, functionName, options) {
method: method.format()
});
}
if (!contract.signer) {
errors.throwError("sending a transaction require a signer", errors.UNSUPPORTED_OPERATION, { operation: "sendTransaction" });
}
if (options.transaction) {
return properties_1.resolveProperties(tx);
}
if (!contract.signer) {
errors.throwError("sending a transaction require a signer", errors.UNSUPPORTED_OPERATION, { operation: "sendTransaction" });
}
return contract.signer.sendTransaction(tx).then(function (tx) {
var wait = tx.wait.bind(tx);
tx.wait = function (confirmations) {
Expand Down Expand Up @@ -13850,7 +13850,7 @@ exports.info = info;
},{}],68:[function(require,module,exports){
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = "5.0.0-beta.141";
exports.version = "5.0.0-beta.142";

},{}],69:[function(require,module,exports){
"use strict";
Expand Down
2 changes: 1 addition & 1 deletion packages/ethers/dist/ethers.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/ethers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ethers",
"version": "5.0.0-beta.141",
"version": "5.0.0-beta.142",
"description": "Error utility functions for ethers.",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -56,5 +56,5 @@
"publishConfig": {
"tag": "next"
},
"tarballHash": "0xe85792a6937c87220bfa6fd5b744c54b75014d3a36c86e8001c73603c22f2b3d"
"tarballHash": "0xca0904f3be00ad4c50b892b5838c64f97038e09fb6d4ff19494b71951d79549d"
}
2 changes: 1 addition & 1 deletion packages/ethers/src.ts/_version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = "5.0.0-beta.141";
export const version = "5.0.0-beta.142";

0 comments on commit d55ce00

Please sign in to comment.