From 66c80cee8e2ee0d3c4f157466b9c8831b9f0883e Mon Sep 17 00:00:00 2001 From: Ben Hauser Date: Tue, 12 Oct 2021 22:37:41 +0400 Subject: [PATCH] release: update changelog, bump version to v1.1.1 --- CHANGELOG.md | 4 ++++ setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0f3318..4e3f244 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ This project was forked from `py-solc`. View the original changelog [here](https ## [Unreleased](https://github.com/iamdefinitelyahuman/py-solc-x) +## [1.1.1](https://github.com/iamdefinitelyahuman/py-solc-x/releases/tag/v1.1.1) - 2021-10-12 +### Fixed +- Invalid default compiler outputs ([#127](https://github.com/iamdefinitelyahuman/py-solc-x/pull/127)) + ## [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)) diff --git a/setup.cfg b/setup.cfg index f7b682a..bad57ff 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.0 +current_version = 1.1.1 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index c86afd3..517e031 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="py-solc-x", - version="1.1.0", # don't change this manually, use bumpversion instead + version="1.1.1", # 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)",