diff --git a/CHANGELOG b/CHANGELOG index fc2bbe7..7f131f6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,8 @@ -unreleased ----------- +0.10.1 +------ - - Support ARM 64 bit architecture (`aarch64`) #86 + - Support ARM 64 bit architecture (`aarch64`) #86 + - Bugfix: always include `-` for calls using stdin 0.10.0 ------ diff --git a/setup.cfg b/setup.cfg index 2535259..26a4b42 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0 +current_version = 0.10.1 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index d982125..514ad30 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="py-solc-x", - version="0.10.0", # don't change this manually, use bumpversion instead + version="0.10.1", # don't change this manually, use bumpversion instead description="Python wrapper around the solc binary with 0.5.x and 0.6.x support", long_description_markdown_filename="README.md", author="Ben Hauser (forked from py-solc by Piper Merriam)",