diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f5bed1..d49e7c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,14 @@ This changelog format is based on [Keep a Changelog](https://keepachangelog.com/ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased](https://github.com/iamdefinitelyahuman/brownie-token-tester) + +## [0.2.0](https://github.com/iamdefinitelyahuman/brownie-token-tester/tree/v0.2.0) - 2021-03-28 ### Added - Custom minting logic for: USDC, DAI, USDT, EURS, sEURS, sETH, sUSD, ankrETH, rETH - Add fork tests for custom minting logic +- `deployer` kwarg for `ERC20` +- Use Vyper `v0.2.11` ## [0.1.0](https://github.com/iamdefinitelyahuman/brownie-token-tester/tree/v0.1.0) - 2021-01-25 diff --git a/setup.cfg b/setup.cfg index d4ae836..8761f26 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index 0974c2c..e829ce2 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ name="brownie-token-tester", packages=find_packages(exclude=["tests", "tests.*"]), py_modules=["brownie_tokens"], - version="0.1.0", # don't change this manually, use bumpversion instead + version="0.2.0", # don't change this manually, use bumpversion instead license="MIT", description="Helper objects for generating ERC20s while testing a Brownie project.", long_description=long_description,