From fc8954fc19150ddc924ae1b0f4b0eb774234379b Mon Sep 17 00:00:00 2001 From: Peter James Date: Thu, 1 Aug 2024 11:22:31 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.4=20=E2=86=92=201.0.5=20(?= =?UTF-8?q?#554)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 5 +++++ docs/index.md | 2 +- gbq/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c7772a8..998db05b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.5] - 2024-08-01 + +### Fixed +- Fix BigQuery SchemaField descriptions + ### Internal - Use [hatch][hatch] for build backend. diff --git a/docs/index.md b/docs/index.md index f93e67fc..31300e18 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,4 @@ -# GBQ - 1.0.4 +# GBQ - 1.0.5 [![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 76d455f8..4330a837 100644 --- a/gbq/__init__.py +++ b/gbq/__init__.py @@ -1,5 +1,5 @@ from gbq.bigquery import BigQuery -__version__ = "1.0.4" +__version__ = "1.0.5" __author__ = "Jash Parekh " __all__ = [BigQuery] # type: ignore diff --git a/pyproject.toml b/pyproject.toml index 6d57c95a..830fca07 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "gbq" -version = "1.0.4" +version = "1.0.5" description = "Python wrapper for interacting Google BigQuery." readme = "README.md" license = {text = "MIT"}