diff --git a/HISTORY.md b/HISTORY.md index 972433c..d9b7bb1 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,9 @@ ## History +### 0.1.1 (2020-12-05) + +- Raise an exception with a clear message when type conflict happens + ### 0.1.0 (2020-11-25) Initial release diff --git a/bin/release_build b/bin/release_build new file mode 100755 index 0000000..1e5dac3 --- /dev/null +++ b/bin/release_build @@ -0,0 +1,13 @@ +#!/bin/bash + +./test/install_test.sh && + +python3 setup.py clean --all +rm -fr dist +rm -fr build +rm -fr tap_bigquery.egg-info +python3 setup.py sdist bdist_wheel + +# test +# python3 -m twine upload --repository testpypi dist/* +twine upload dist/* diff --git a/setup.py b/setup.py index 34b27bb..0bab945 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python from setuptools import setup -VERSION = "0.1.0" +VERSION = "0.1.1" with open("README.md", "r") as fh: long_description = fh.read()