From daecfbb8c73521ed8571863bf2b30b25a3603614 Mon Sep 17 00:00:00 2001 From: iamdefinitelyahuman Date: Tue, 31 Dec 2019 03:18:50 +0200 Subject: [PATCH] changelog, bumpversion --- CHANGELOG | 2 +- Makefile | 44 -------------------------------------------- setup.py | 2 +- 3 files changed, 2 insertions(+), 46 deletions(-) delete mode 100644 Makefile diff --git a/CHANGELOG b/CHANGELOG index c17f406..872f0ec 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -0.7.0 (unreleased) +0.7.0 ----- - Store solc binaries at $HOME/.solcx diff --git a/Makefile b/Makefile deleted file mode 100644 index cb16864..0000000 --- a/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -.PHONY: clean-pyc clean-build - -help: - @echo "clean-build - remove build artifacts" - @echo "clean-pyc - remove Python file artifacts" - @echo "lint - check style with flake8" - @echo "test - run tests quickly with the default Python" - @echo "testall - run tests on every Python version with tox" - @echo "release - package and upload a release" - @echo "sdist - package" - -clean: clean-build clean-pyc - -clean-build: - rm -fr build/ - rm -fr dist/ - rm -fr *.egg-info - -clean-pyc: - find . -name '*.pyc' -exec rm -f {} + - find . -name '*.pyo' -exec rm -f {} + - find . -name '*~' -exec rm -f {} + - -lint: - flake8 solc - -test: - py.test tests - -test-all: - tox - -release: clean - CURRENT_SIGN_SETTING=$(git config commit.gpgSign) - git config commit.gpgSign true - bumpversion $(bump) - git push upstream && git push upstream --tags - python setup.py sdist bdist_wheel - twine upload dist/* - git config commit.gpgSign "$(CURRENT_SIGN_SETTING)" - -sdist: clean - python setup.py sdist bdist_wheel - ls -l dist diff --git a/setup.py b/setup.py index 52e956e..fc5ef68 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='py-solc-x', - version='0.6.1', + version='0.7.0', 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)',