diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 81634b9d..095edf33 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.2 +current_version = 1.0.3 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/CHANGELOG.md b/CHANGELOG.md index a8d45512..9eef6ff7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.0.2] - 2023-10-10 +### Fixed +- Docs publishing pipeline + +## [1.0.2] - 2023-10-10 + ### Changed - Update dependencies diff --git a/docs/index.md b/docs/index.md index 41486546..bf14eb04 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,4 @@ -# GBQ - 1.0.2 +# GBQ - 1.0.3 [![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 46bcf3e0..4ab523f1 100644 --- a/gbq/__init__.py +++ b/gbq/__init__.py @@ -1,5 +1,5 @@ from gbq.bigquery import BigQuery -__version__ = "1.0.2" +__version__ = "1.0.3" __author__ = "Jash Parekh " __all__ = [BigQuery] # type: ignore diff --git a/setup.cfg b/setup.cfg index c9398a3f..2cb21b15 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.2 +version = 1.0.3 description = Python wrapper for interacting Google BigQuery. long_description = file: README.md long_description_content_type = text/markdown