From 26d8021962d423052260f0f1ed348035ebf2e729 Mon Sep 17 00:00:00 2001 From: Jash Parekh Date: Tue, 27 Dec 2022 19:33:36 +0530 Subject: [PATCH] Upgrade to v1.0.1 (#414) Co-authored-by: Jash Parekh --- .bumpversion.cfg | 2 +- CHANGELOG.md | 5 +++++ docs/index.md | 2 +- gbq/__init__.py | 2 +- setup.cfg | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 28bef601..a74b4ac3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a2ced81..e1713a9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.1] - 2022-12-27 + +### Changed +- Update dependencies + ## [1.0.0] - 2022-09-19 ### Added diff --git a/docs/index.md b/docs/index.md index 2bb0c9a0..498a349c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,4 @@ -# GBQ - 1.0.0 +# GBQ - 1.0.1 [![CI pipeline status](https://github.com/wayfair-incubator/gbq/workflows/CI/badge.svg?branch=main)][ci] [![PyPI](https://img.shields.io/pypi/v/gbq)](https://pypi.org/project/gbq/) diff --git a/gbq/__init__.py b/gbq/__init__.py index d85719f4..e228c140 100644 --- a/gbq/__init__.py +++ b/gbq/__init__.py @@ -1,5 +1,5 @@ from gbq.bigquery import BigQuery -__version__ = "1.0.0" +__version__ = "1.0.1" __author__ = "Jash Parekh " __all__ = [BigQuery] # type: ignore diff --git a/setup.cfg b/setup.cfg index b8287764..71da54a1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ name = gbq url = https://github.com/wayfair-incubator/gbq author = Jash Parekh author_email = jparekh1@wayfair.com -version = 1.0.0 +version = 1.0.1 description = Python wrapper for interacting Google BigQuery. long_description = file: README.md long_description_content_type = text/markdown