Skip to content

Commit

Permalink
bump version to 0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
daigotanaka committed Jul 15, 2022
1 parent 3867233 commit 76eb087
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
4 changes: 3 additions & 1 deletion AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ Development Lead
Contributors
------------

* Ivan Zerin
* sphinks (Ivan Zerin)
* NiallRees (Niall Woodward)
* seanglynn-thrive
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## History

### 0.3.6

- Bump google-cloud-bigquery version to 3.2.0

### 0.3.5

- Bump getschema version to 0.1.2 so it allows empty object (dict) entries
Expand Down
4 changes: 3 additions & 1 deletion bin/release_build
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
#!/bin/bash

./tests/install_test.sh &&
# ./tests/install_test.sh &&

python3 setup.py clean --all
rm -fr dist
rm -fr build
rm -fr tap_bigquery.egg-info

pip install -U pip
python3 setup.py sdist bdist_wheel

# test
Expand Down
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.3.5"
VERSION = "0.3.6"

with open("README.md", "r") as fh:
long_description = fh.read()
Expand Down
1 change: 1 addition & 0 deletions tests/install_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ fi

$PYTHON -m venv install_test
source install_test/bin/activate;
pip install -U pip
find $PACKAGE -name '__pycache__' | xargs rm -fr;
python setup.py clean --all;
rm -fr dist;
Expand Down

0 comments on commit 76eb087

Please sign in to comment.