Update CHANGELOGs

This commit is contained in:
Amir Bandeali 2019-04-03 22:22:45 -07:00
parent 2ec0d421f7
commit 63e93d9253
5 changed files with 42 additions and 2 deletions

View File

@ -84,6 +84,18 @@
{ {
"note": "Update domain separator", "note": "Update domain separator",
"pr": 1742 "pr": 1742
},
{
"note": "Refactor contract to use new ITransactions interface",
"pr": 1753
},
{
"note": "Add verifyingContractIfExists arg to LibEIP712CoordinatorDomain constructor",
"pr": 1753
},
{
"note": "Remove LibZeroExTransaction contract",
"pr": 1753
} }
], ],
"timestamp": 1554997931 "timestamp": 1554997931

View File

@ -35,6 +35,18 @@
{ {
"note": "Rename `verifyingContract` to `verifyingContractAddress` in domain schema", "note": "Rename `verifyingContract` to `verifyingContractAddress` in domain schema",
"pr": 1742 "pr": 1742
},
{
"note": "Add LibZeroExTransaction contract",
"pr": 1753
},
{
"note": "Add verifyingContractIfExists arg to LibEIP712ExchangeDomain constructor",
"pr": 1753
},
{
"note": "Remove LibEIP712ExchangeDomainConstants and LibEIP712 contracts",
"pr": 1753
} }
], ],
"timestamp": 1563006338 "timestamp": 1563006338

View File

@ -1,6 +1,6 @@
[ [
{ {
"version": "2.1.9", "version": "3.0.0",
"changes": [ "changes": [
{ {
"note": "Use new/cheaper reentrancy guard/mutex", "note": "Use new/cheaper reentrancy guard/mutex",
@ -9,6 +9,14 @@
{ {
"note": "Update domain separator", "note": "Update domain separator",
"pr": 1742 "pr": 1742
},
{
"note": "Refactor `executeTransaction` to take `ZeroExTransaction` struct as input",
"pr": 1753
},
{
"note": "Refactor example contracts that use `executeTransaction`",
"pr": 1753
} }
] ]
}, },

View File

@ -27,6 +27,10 @@
{ {
"note": "Remove unused `LibOrder` inheritance", "note": "Remove unused `LibOrder` inheritance",
"pr": 1742 "pr": 1742
},
{
"note": "Refactor BalanceThresholdFilter to use new ITransactions interface",
"pr": 1753
} }
], ],
"timestamp": 1563006338 "timestamp": 1563006338

View File

@ -1,10 +1,14 @@
[ [
{ {
"version": "3.1.10", "version": "3.2.0",
"changes": [ "changes": [
{ {
"note": "Change ReentrancyGuard implementation to cheaper one", "note": "Change ReentrancyGuard implementation to cheaper one",
"pr": 1699 "pr": 1699
},
{
"note": "Add LibEIP712 contract",
"pr": 1753
} }
] ]
}, },