From 9d077cdf777cb636735ef1c15117a9c2f55188df Mon Sep 17 00:00:00 2001 From: Ben Hauser Date: Fri, 20 Nov 2020 23:55:03 +0400 Subject: [PATCH] release: update changelog, bump version to v1.0.1 --- CHANGELOG.md | 7 ++++++- setup.cfg | 2 +- setup.py | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53ef2df..7178200 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 This project was forked from `py-solc`. View the original changelog [here](https://github.com/ethereum/py-solc/blob/master/CHANGELOG). ## [Unreleased](https://github.com/iamdefinitelyahuman/py-solc-x) -- improve `solc` version detection and raise correct error if it fails + +## [1.0.1](https://github.com/iamdefinitelyahuman/py-solc-x/releases/tag/v1.0.1) - 2020-11-20 +### Fixed +- Improve `solc` version detection and raise correct error if it fails ([#110](https://github.com/iamdefinitelyahuman/py-solc-x/pull/110)) +- Correctly handle standalone Windows executables ([#112](https://github.com/iamdefinitelyahuman/py-solc-x/pull/112)) +- Correctly handle non-standard tagged versions from Github API ([#113](https://github.com/iamdefinitelyahuman/py-solc-x/pull/113)) ## [1.0.0](https://github.com/iamdefinitelyahuman/py-solc-x/releases/tag/v1.0.0) - 2020-08-26 ### Added diff --git a/setup.cfg b/setup.cfg index d7514d0..b56170f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index 450f4a7..9eb142d 100644 --- a/setup.py +++ b/setup.py @@ -4,8 +4,8 @@ setup( name="py-solc-x", - version="1.0.0", # don't change this manually, use bumpversion instead - description="Python wrapper around the solc binary with 0.5.x and 0.6.x support", + version="1.0.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)", author_email="ben@hauser.id",