aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/0x.js')
-rw-r--r--packages/0x.js/CHANGELOG.json19
-rw-r--r--packages/0x.js/CHANGELOG.md21
-rw-r--r--packages/0x.js/package.json34
3 files changed, 56 insertions, 18 deletions
diff --git a/packages/0x.js/CHANGELOG.json b/packages/0x.js/CHANGELOG.json
index 7d6139658..51d4b833a 100644
--- a/packages/0x.js/CHANGELOG.json
+++ b/packages/0x.js/CHANGELOG.json
@@ -1,5 +1,23 @@
[
{
+ "version": "1.0.1-rc.1",
+ "changes": [
+ {
+ "note": "Dependencies updated"
+ }
+ ]
+ },
+ {
+ "timestamp": 1532357734,
+ "version": "1.0.0",
+ "changes": [
+ {
+ "note": "Dependencies updated"
+ }
+ ]
+ },
+ {
+ "timestamp": 1532043100,
"version": "1.0.0-rc.2",
"changes": [
{
@@ -8,6 +26,7 @@
]
},
{
+ "timestamp": 1532043000,
"version": "1.0.0-rc.1",
"changes": [
{
diff --git a/packages/0x.js/CHANGELOG.md b/packages/0x.js/CHANGELOG.md
index f38529715..36a3c2a1d 100644
--- a/packages/0x.js/CHANGELOG.md
+++ b/packages/0x.js/CHANGELOG.md
@@ -1,10 +1,29 @@
<!--
-This file is auto-generated using the monorepo-scripts package. Don't edit directly.
+changelogUtils.file is auto-generated using the monorepo-scripts package. Don't edit directly.
Edit the package's CHANGELOG.json file only.
-->
CHANGELOG
+## v1.0.0 - _July 23, 2018_
+
+ * Dependencies updated
+
+## v1.0.0-rc.2 - _July 20, 2018_
+
+ * Remove `zeroEx.assetData` and instead re-export it's static functions directly off `ZeroEx`
+
+## v1.0.0-rc.1 - _July 20, 2018_
+
+ * Remove tokenRegistry wrapper (#863)
+ * Rename `zeroEx.token` to `zeroEx.erc20Token`, and add `zeroEx.erc721Token` (#863)
+ * Rename `zeroEx.proxy` to `zeroEx.erc20Proxy` and add `zeroEx.erc721Proxy` (#863)
+ * Refactored `ZeroEx.isValidSignature` to `zeroEx.isValidSignatureAsync`. It is now async so that it can verify contract-dependent signature types (#863)
+ * Refactored `signOrderHashAsync` to `ecSignOrderHashAsync`. There are now many non-ECSignature ways to sign orders too. (#863)
+ * Removed `createOrderWatcherAsync` method. Will be added back once OrderWatcher is refactored for V2 (#863)
+ * 0x.js exports renamed contract events and event arg types (#863)
+ * Export `ZeroEx.assetData` with methods to decode/encode assetData fields found in 0x orders (#884)
+
## v0.38.6 - _July 18, 2018_
* Dependencies updated
diff --git a/packages/0x.js/package.json b/packages/0x.js/package.json
index 06ffe2daf..f4231e1e2 100644
--- a/packages/0x.js/package.json
+++ b/packages/0x.js/package.json
@@ -1,6 +1,6 @@
{
"name": "0x.js",
- "version": "1.0.0-rc.2",
+ "version": "1.0.0",
"engines": {
"node": ">=6.12"
},
@@ -68,11 +68,11 @@
},
"license": "Apache-2.0",
"devDependencies": {
- "@0xproject/abi-gen": "^1.0.0",
- "@0xproject/dev-utils": "^1.0.0",
- "@0xproject/migrations": "^1.0.0",
- "@0xproject/monorepo-scripts": "^1.0.0",
- "@0xproject/tslint-config": "^1.0.0",
+ "@0xproject/abi-gen": "^1.0.1",
+ "@0xproject/dev-utils": "^1.0.1",
+ "@0xproject/migrations": "^1.0.1",
+ "@0xproject/monorepo-scripts": "^1.0.1",
+ "@0xproject/tslint-config": "^1.0.1",
"@types/lodash": "4.14.104",
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.53",
@@ -98,17 +98,17 @@
"webpack": "^3.1.0"
},
"dependencies": {
- "@0xproject/assert": "^1.0.0",
- "@0xproject/base-contract": "^1.0.0",
- "@0xproject/contract-wrappers": "^1.0.0-rc.1",
- "@0xproject/order-utils": "^1.0.0-rc.1",
- "@0xproject/sol-compiler": "^1.0.0",
- "@0xproject/subproviders": "^1.0.0",
- "@0xproject/types": "^1.0.0-rc.1",
- "@0xproject/typescript-typings": "^1.0.0",
- "@0xproject/utils": "^1.0.0",
- "@0xproject/web3-wrapper": "^1.0.0",
- "ethereum-types": "^1.0.0",
+ "@0xproject/assert": "^1.0.1",
+ "@0xproject/base-contract": "^1.0.1",
+ "@0xproject/contract-wrappers": "^1.0.0",
+ "@0xproject/order-utils": "^1.0.0",
+ "@0xproject/sol-compiler": "^1.0.1",
+ "@0xproject/subproviders": "^1.0.1",
+ "@0xproject/types": "^1.0.0",
+ "@0xproject/typescript-typings": "^1.0.1",
+ "@0xproject/utils": "^1.0.1",
+ "@0xproject/web3-wrapper": "^1.0.1",
+ "ethereum-types": "^1.0.1",
"ethers": "3.0.22",
"lodash": "^4.17.4"
},