From 76eb087924eb741cde2355f2079bdc4545c10e1a Mon Sep 17 00:00:00 2001 From: Daigo Tanaka Date: Fri, 15 Jul 2022 01:17:19 +0000 Subject: [PATCH] bump version to 0.3.6 --- AUTHORS.md | 4 +++- HISTORY.md | 4 ++++ bin/release_build | 4 +++- setup.py | 2 +- tests/install_test.sh | 1 + 5 files changed, 12 insertions(+), 3 deletions(-) diff --git a/AUTHORS.md b/AUTHORS.md index 5104d26..a21bd8b 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -10,4 +10,6 @@ Development Lead Contributors ------------ -* Ivan Zerin +* sphinks (Ivan Zerin) +* NiallRees (Niall Woodward) +* seanglynn-thrive diff --git a/HISTORY.md b/HISTORY.md index 353c1a3..7c80b85 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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 diff --git a/bin/release_build b/bin/release_build index 739e456..f131368 100755 --- a/bin/release_build +++ b/bin/release_build @@ -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 diff --git a/setup.py b/setup.py index eef5de7..a9a16ef 100755 --- a/setup.py +++ b/setup.py @@ -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() diff --git a/tests/install_test.sh b/tests/install_test.sh index 2e78b4f..b906b09 100755 --- a/tests/install_test.sh +++ b/tests/install_test.sh @@ -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;