diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-09-21 23:20:48 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-09-21 23:20:48 +0800 |
commit | 7a5376621f2c2503c6415802984b4d8ae05db723 (patch) | |
tree | 1a9d41465cf2a945d5144c632a012f3527817ceb /packages/order-utils | |
parent | 5e84e9689f0899a39dbfaffe13b80fa07fec5ba8 (diff) | |
parent | 29f6adc2ed57720d2c2aab7b760a4bcfec5d7b37 (diff) | |
download | dexon-sol-tools-7a5376621f2c2503c6415802984b4d8ae05db723.tar dexon-sol-tools-7a5376621f2c2503c6415802984b4d8ae05db723.tar.gz dexon-sol-tools-7a5376621f2c2503c6415802984b4d8ae05db723.tar.bz2 dexon-sol-tools-7a5376621f2c2503c6415802984b4d8ae05db723.tar.lz dexon-sol-tools-7a5376621f2c2503c6415802984b4d8ae05db723.tar.xz dexon-sol-tools-7a5376621f2c2503c6415802984b4d8ae05db723.tar.zst dexon-sol-tools-7a5376621f2c2503c6415802984b4d8ae05db723.zip |
Merge branch 'development' of https://github.com/0xProject/0x-monorepo into feature/forwarder-helper/sra-and-rpc
Diffstat (limited to 'packages/order-utils')
-rw-r--r-- | packages/order-utils/CHANGELOG.json | 18 | ||||
-rw-r--r-- | packages/order-utils/CHANGELOG.md | 8 | ||||
-rw-r--r-- | packages/order-utils/package.json | 24 |
3 files changed, 38 insertions, 12 deletions
diff --git a/packages/order-utils/CHANGELOG.json b/packages/order-utils/CHANGELOG.json index 2beb7a297..5bf538c1f 100644 --- a/packages/order-utils/CHANGELOG.json +++ b/packages/order-utils/CHANGELOG.json @@ -1,5 +1,23 @@ [ { + "timestamp": 1537541580, + "version": "1.0.3", + "changes": [ + { + "note": "Dependencies updated" + } + ] + }, + { + "version": "1.0.2", + "changes": [ + { + "note": "Drastically reduce the bundle size by removing unused parts of included contract artifacts." + } + ], + "timestamp": 1537369748 + }, + { "version": "1.0.1", "changes": [ { diff --git a/packages/order-utils/CHANGELOG.md b/packages/order-utils/CHANGELOG.md index 5b5cc2925..e35867fa6 100644 --- a/packages/order-utils/CHANGELOG.md +++ b/packages/order-utils/CHANGELOG.md @@ -5,6 +5,14 @@ Edit the package's CHANGELOG.json file only. CHANGELOG +## v1.0.3 - _September 21, 2018_ + + * Dependencies updated + +## v1.0.2 - _September 19, 2018_ + + * Drastically reduce the bundle size by removing unused parts of included contract artifacts. + ## v1.0.1 - _September 5, 2018_ * Export `orderParsingUtils` (#1044) diff --git a/packages/order-utils/package.json b/packages/order-utils/package.json index c6794bcf2..c9620bffa 100644 --- a/packages/order-utils/package.json +++ b/packages/order-utils/package.json @@ -1,6 +1,6 @@ { "name": "@0xproject/order-utils", - "version": "1.0.1", + "version": "1.0.3", "engines": { "node": ">=6.12" }, @@ -11,7 +11,7 @@ "build": "yarn pre_build && tsc -b", "pre_build": "run-s update_artifacts generate_contract_wrappers", "generate_contract_wrappers": "abi-gen --abis 'lib/src/artifacts/@(Exchange|IWallet|IValidator|DummyERC20Token|ERC20Proxy|ERC20Token).json' --template ../contract_templates/contract.handlebars --partials '../contract_templates/partials/**/*.handlebars' --output src/generated_contract_wrappers --backend ethers", - "update_artifacts": "for i in ${npm_package_config_contracts_v2}; do copyfiles -u 4 ../migrations/artifacts/2.0.0/$i.json lib/src/artifacts; done;", + "update_artifacts": "for i in ${npm_package_config_contracts_v2}; do copyfiles -u 4 ../migrations/artifacts/2.0.0-trimmed/$i.json lib/src/artifacts; done;", "test": "yarn run_mocha", "rebuild_and_test": "run-s build test", "test:circleci": "yarn test:coverage", @@ -38,7 +38,7 @@ }, "homepage": "https://github.com/0xProject/0x-monorepo/packages/order-utils/README.md", "devDependencies": { - "@0xproject/dev-utils": "^1.0.7", + "@0xproject/dev-utils": "^1.0.8", "@0xproject/tslint-config": "^1.0.7", "@types/bn.js": "^4.11.0", "@types/lodash": "4.14.104", @@ -57,16 +57,16 @@ "typescript": "3.0.1" }, "dependencies": { - "@0xproject/assert": "^1.0.8", - "@0xproject/base-contract": "^2.0.2", - "@0xproject/json-schemas": "^1.0.1", - "@0xproject/types": "^1.0.1", - "@0xproject/typescript-typings": "^2.0.0", - "@0xproject/utils": "^1.0.8", - "@0xproject/web3-wrapper": "^2.0.2", - "@types/node": "^8.0.53", + "@0xproject/assert": "^1.0.9", + "@0xproject/base-contract": "^2.0.3", + "@0xproject/json-schemas": "^1.0.2", + "@0xproject/types": "^1.0.2", + "@0xproject/typescript-typings": "^2.0.1", + "@0xproject/utils": "^1.0.9", + "@0xproject/web3-wrapper": "^2.0.3", + "@types/node": "*", "bn.js": "^4.11.8", - "ethereum-types": "^1.0.6", + "ethereum-types": "^1.0.7", "ethereumjs-abi": "0.6.5", "ethereumjs-util": "^5.1.1", "ethers": "3.0.22", |