From 5d75afa1ce4993a11ea81ec9733b9ce2b169ab43 Mon Sep 17 00:00:00 2001 From: Ben Hauser Date: Wed, 10 Jun 2020 13:51:50 +0400 Subject: [PATCH] chore: update changelog, bump version to v0.9.0 --- CHANGELOG | 7 +++++++ setup.cfg | 3 +-- setup.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 670ceb0..3aa7abf 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,10 @@ +0.9.0 +----- + + - Add `base_path` as a possible wrapper kwarg + - Bugfix: handle `stderr` output when calling `which` + - Bugfix: expect return code 1 when using `--help` + 0.8.2 ----- diff --git a/setup.cfg b/setup.cfg index 7d2be47..3516638 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.2 +current_version = 0.9.0 [bumpversion:file:setup.py] @@ -16,4 +16,3 @@ use_parentheses = True [tool:pytest] addopts = -v --cov=solcx --cov-branch --cov-report xml - diff --git a/setup.py b/setup.py index e6515c3..8b4011a 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="py-solc-x", - version="0.8.2", # don't change this manually, use bumpversion instead + version="0.9.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", long_description_markdown_filename="README.md", author="Ben Hauser (forked from py-solc by Piper Merriam)",