Skip to content

Commit

Permalink
bump version to v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
daigotanaka committed Dec 5, 2020
1 parent 24f64de commit f9cd8af
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -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
13 changes: 13 additions & 0 deletions bin/release_build
Original file line number Diff line number Diff line change
@@ -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/*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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()
Expand Down

0 comments on commit f9cd8af

Please sign in to comment.