0x.js@1.0.0-rc.1

This commit is contained in:
Leonid Logvinov 2018-07-20 00:11:00 +02:00
parent 5e015872ef
commit 52693f7d0a
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4
2 changed files with 8 additions and 12 deletions

View File

@ -1,32 +1,32 @@
[ [
{ {
"version": "1.0.0", "version": "1.0.0-rc.1",
"changes": [ "changes": [
{ {
"note": "Remove tokenRegistry wrapper", "note": "Remove tokenRegistry wrapper",
"pr": 863 "pr": 863
}, },
{ {
"note": "Rename zeroEx.token to zeroEx.erc20Token, and add zeroEx.erc721Token", "note": "Rename `zeroEx.token` to `zeroEx.erc20Token`, and add `zeroEx.erc721Token`",
"pr": 863 "pr": 863
}, },
{ {
"note": "Rename zeroEx.proxy to zeroEx.erc20Proxy and add zeroEx.erc721Proxy", "note": "Rename `zeroEx.proxy` to `zeroEx.erc20Proxy` and add `zeroEx.erc721Proxy`",
"pr": 863 "pr": 863
}, },
{ {
"note": "note":
"Refactored ZeroEx.isValidSignature to zeroEx.isValidSignatureAsync. It is now async so that it can verify contract-dependent signature types", "Refactored `ZeroEx.isValidSignature` to `zeroEx.isValidSignatureAsync`. It is now async so that it can verify contract-dependent signature types",
"pr": 863 "pr": 863
}, },
{ {
"note": "note":
"Refactored signOrderHashAsync to ecSignOrderHashAsync. There are now many non-ECSignature ways to sign orders too.", "Refactored `signOrderHashAsync` to `ecSignOrderHashAsync`. There are now many non-ECSignature ways to sign orders too.",
"pr": 863 "pr": 863
}, },
{ {
"note": "note":
"Removed createOrderWatcherAsync method. Will be added back once OrderWatcher is refactored for V2", "Removed `createOrderWatcherAsync` method. Will be added back once OrderWatcher is refactored for V2",
"pr": 863 "pr": 863
}, },
{ {
@ -34,11 +34,7 @@
"pr": 863 "pr": 863
}, },
{ {
"note": "Remove stateLayer config from OrderWatcher. It now always operates on the latest block", "note": "Export `ZeroEx.assetData` with methods to decode/encode assetData fields found in 0x orders",
"pr": 875
},
{
"note": "Export ZeroEx.assetData with methods to decode/encode assetData fields found in 0x orders",
"pr": 884 "pr": 884
} }
] ]

View File

@ -1,6 +1,6 @@
{ {
"name": "0x.js", "name": "0x.js",
"version": "0.38.6", "version": "1.0.0-rc.1",
"engines": { "engines": {
"node": ">=6.12" "node": ">=6.12"
}, },