Add to CHANGELOG

This commit is contained in:
fragosti 2018-09-04 14:49:39 -07:00
parent 33a45fa739
commit a3527a77a6
2 changed files with 10 additions and 1 deletions

View File

@ -1,4 +1,13 @@
[
{
"version": "2.0.0-rc.3",
"changes": [
{
"note": "Change `OrderConfigRequest` to use BigNumber instead of string for relevant fields.",
"pr": 1058
}
]
},
{
"version": "2.0.0-rc.2",
"changes": [

View File

@ -1,3 +1,4 @@
import { BigNumber } from '@0xproject/utils';
import * as chai from 'chai';
import * as chaiAsPromised from 'chai-as-promised';
import * as dirtyChai from 'dirty-chai';
@ -18,7 +19,6 @@ import { orderbookResponse } from './fixtures/standard_relayer_api/orderbook';
import * as orderbookJSON from './fixtures/standard_relayer_api/orderbook.json';
import { ordersResponse } from './fixtures/standard_relayer_api/orders';
import * as ordersResponseJSON from './fixtures/standard_relayer_api/orders.json';
import { BigNumber } from 'bignumber.js';
chai.config.includeStack = true;
chai.use(dirtyChai);