Standardize changelog dates and format
This commit is contained in:
parent
8926dac78c
commit
defd249565
@ -237,11 +237,11 @@
|
||||
* Added `zeroEx.token.setUnlimitedAllowanceAsync` (#137)
|
||||
* Added `zeroEx.token.UNLIMITED_ALLOWANCE_IN_BASE_UNITS` (#137)
|
||||
|
||||
## v0.10.4 - _Aug 24, 2017_
|
||||
## v0.10.4 - _August 24, 2017_
|
||||
|
||||
* Fixed a bug where checksummed addresses were being pulled from artifacts and not lower-cased. (#135)
|
||||
|
||||
## v0.10.1 - _Aug 24, 2017_
|
||||
## v0.10.1 - _August 24, 2017_
|
||||
|
||||
* Added `zeroEx.exchange.validateFillOrderThrowIfInvalidAsync` (#128)
|
||||
* Added `zeroEx.exchange.validateFillOrKillOrderThrowIfInvalidAsync` (#128)
|
||||
@ -256,20 +256,20 @@
|
||||
* Added clear error message when checksummed address is passed to a public method (#124)
|
||||
* Fixes the description of `shouldThrowOnInsufficientBalanceOrAllowance` in docs (#127)
|
||||
|
||||
## v0.9.3 - _Aug 22, 2017_
|
||||
## v0.9.3 - _August 22, 2017_
|
||||
|
||||
* Update contract artifacts to include latest Kovan and Mainnet deploys (#118)
|
||||
|
||||
## v0.9.2 - _Aug 21, 2017_
|
||||
## v0.9.2 - _August 21, 2017_
|
||||
|
||||
* *This version was unpublished because of a publishing issue.*
|
||||
* Update contract artifacts to include latest Kovan and Mainnet deploys (#118)
|
||||
|
||||
## v0.9.1 - _Aug. 16, 2017_
|
||||
## v0.9.1 - _August 16, 2017_
|
||||
|
||||
* Fixed the bug causing `zeroEx.token.getBalanceAsync()` to fail if no addresses available (#120)
|
||||
|
||||
## v0.9.0 - _Jul. 26, 2017_
|
||||
## v0.9.0 - _July 26, 2017_
|
||||
|
||||
* Migrated to the new version of smart contracts (#101)
|
||||
* Removed the ability to call methods on multiple authorized Exchange smart contracts (#106)
|
||||
@ -280,7 +280,7 @@
|
||||
* Updated to typescript v2.4 (#104)
|
||||
* Fixed an issue with incorrect balance/allowance validation when ZRX is one of the tokens traded (#109)
|
||||
|
||||
## v0.8.0 - _Jul. 4, 2017_
|
||||
## v0.8.0 - _July 4, 2017_
|
||||
|
||||
* Added the ability to call methods on different authorized versions of the Exchange smart contract (#82)
|
||||
* Updated contract artifacts to reflect latest changes to the smart contracts (0xproject/contracts#59)
|
||||
@ -293,35 +293,35 @@
|
||||
* `zeroEx.tokenRegistry.invalidateContractInstance`
|
||||
* Fixed the bug where `zeroEx.setProviderAsync` didn't invalidate etherToken contract's instance
|
||||
|
||||
## v0.7.1 - _Jun. 26, 2017_
|
||||
## v0.7.1 - _June 26, 2017_
|
||||
|
||||
* Added the ability to convert Ether to wrapped Ether tokens and back via `zeroEx.etherToken.depostAsync` and `zeroEx.etherToken.withdrawAsync` (#81)
|
||||
|
||||
## v0.7.0 - _Jun. 22, 2017_
|
||||
## v0.7.0 - _June 22, 2017_
|
||||
|
||||
* Added Kovan smart contract artifacts (#78)
|
||||
* Started returning fillAmount from `fillOrderAsync` and `fillUpToAsync` (#72)
|
||||
* Started returning cancelledAmount from `cancelOrderAsync` (#72)
|
||||
* Renamed type `LogCancelArgs` to `LogCancelContractEventArgs` and `LogFillArgs` to `LogFillContractEventArgs`
|
||||
|
||||
## v0.6.2 - _Jun. 21, 2017_
|
||||
## v0.6.2 - _June 21, 2017_
|
||||
|
||||
* Reduced bundle size
|
||||
* Improved documentation
|
||||
|
||||
## v0.6.1 - _Jun. 19, 2017_
|
||||
## v0.6.1 - _June 19, 2017_
|
||||
|
||||
* Improved documentation
|
||||
|
||||
## v0.6.0 - _Jun. 19, 2017_
|
||||
## v0.6.0 - _June 19, 2017_
|
||||
|
||||
* Made `ZeroEx` class accept `Web3Provider` instance instead of `Web3` instance
|
||||
* Added types for contract event arguments
|
||||
|
||||
## v0.5.2 - _Jun. 15, 2017_
|
||||
## v0.5.2 - _June 15, 2017_
|
||||
|
||||
* Fixed the bug in `postpublish` script that caused that only unminified UMD bundle was uploaded to release page
|
||||
|
||||
## v0.5.1 - _Jun. 15, 2017_
|
||||
## v0.5.1 - _June 15, 2017_
|
||||
|
||||
* Added `postpublish` script to publish to Github Releases with assets.
|
||||
|
@ -21,7 +21,7 @@
|
||||
|
||||
* Added rules for unused imports, variables and Async suffixes (#265)
|
||||
|
||||
## v0.1.0 - _Nov. 14, 2017_
|
||||
## v0.1.0 - _November 14, 2017_
|
||||
|
||||
* Re-published TsLintConfig previously published under NPM package `tslint-config-0xproject`
|
||||
* Updated to TSLint v5.8.0, requiring several rule additions to keep our conventions aligned.
|
||||
|
@ -1,22 +1,22 @@
|
||||
# CHANGELOG
|
||||
|
||||
## v0.4.0 _TBD_
|
||||
## v0.4.0 - _TBD_
|
||||
|
||||
* Rename `signTransactionAsync` to `signMessageAsync` for clarity (#465)
|
||||
|
||||
## v0.3.0 _March 18, 2018_
|
||||
## v0.3.0 - _March 18, 2018_
|
||||
|
||||
* Add `web3Wrapper.takeSnapshotAsync`, `web3Wrapper.revertSnapshotAsync`, `web3Wrapper.mineBlockAsync`, `web3Wrapper.increaseTimeAsync` (#426)
|
||||
* Add `web3Wrapper.isZeroExWeb3Wrapper` for runtime instanceOf checks (#426)
|
||||
* Add a `getProvider` method (#444)
|
||||
|
||||
## v0.2.0 _March 4, 2018_
|
||||
## v0.2.0 - _March 4, 2018_
|
||||
|
||||
* Ensure all returned user addresses are lowercase (#373)
|
||||
* Add `web3Wrapper.callAsync` (#413)
|
||||
* Make `web3Wrapper.estimateGas` accept whole `txData` instead of `data` (#413)
|
||||
* Remove `web3Wrapper.getContractInstance` (#413)
|
||||
|
||||
## v0.1.12 _February 9, 2018_
|
||||
## v0.1.12 - _February 9, 2018_
|
||||
|
||||
* Fix publishing issue where .npmignore was not properly excluding undesired content (#389)
|
||||
|
Loading…
x
Reference in New Issue
Block a user