From ebd62f55840f6bda8b4c9f701a9991649be2851c Mon Sep 17 00:00:00 2001 From: Ben Hauser Date: Mon, 28 Dec 2020 20:37:06 +0100 Subject: [PATCH] release: update changelog, bump version to v1.1.0 --- CHANGELOG.md | 7 +++++++ setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c40ceb1..a0f3318 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,13 @@ This project was forked from `py-solc`. View the original changelog [here](https ## [Unreleased](https://github.com/iamdefinitelyahuman/py-solc-x) +## [1.1.0](https://github.com/iamdefinitelyahuman/py-solc-x/releases/tag/v1.1.0) - 2020-12-28 +### Added +- Optional kwarg `with_commit_hash` in `solcx.get_solc_version` ([#120](https://github.com/iamdefinitelyahuman/py-solc-x/pull/120)) + +### Fixed +- Handle ABI format for Solidity 0.8.0 ([#119](https://github.com/iamdefinitelyahuman/py-solc-x/pull/119)) + ## [1.0.2](https://github.com/iamdefinitelyahuman/py-solc-x/releases/tag/v1.0.2) - 2020-12-10 ### Fixed - Convert `Path` to `str` prior to calling `subprocess` ([#117](https://github.com/iamdefinitelyahuman/py-solc-x/pull/117)) diff --git a/setup.cfg b/setup.cfg index c737a50..f7b682a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.2 +current_version = 1.1.0 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index a7fc1de..c86afd3 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="py-solc-x", - version="1.0.2", # don't change this manually, use bumpversion instead + version="1.1.0", # don't change this manually, use bumpversion instead description="Python wrapper and version management tool for the solc Solidity compiler.", long_description_markdown_filename="README.md", author="Ben Hauser (forked from py-solc by Piper Merriam)",