From 8a9b0e4b91164068914fe87dd11334e3ce816281 Mon Sep 17 00:00:00 2001 From: Jash Parekh Date: Tue, 10 Oct 2023 11:24:33 +0530 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.1=20=E2=86=92=201.0.2=20(?= =?UTF-8?q?#478)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jash Parekh --- .bumpversion.cfg | 2 +- CHANGELOG.md | 5 +++++ docs/index.md | 2 +- gbq/__init__.py | 2 +- renovate.json | 13 ++++++++++++- setup.cfg | 2 +- 6 files changed, 21 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a74b4ac3..81634b9d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.1 +current_version = 1.0.2 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/CHANGELOG.md b/CHANGELOG.md index e1713a9f..a8d45512 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.2] - 2023-10-10 + +### Changed +- Update dependencies + ## [1.0.1] - 2022-12-27 ### Changed diff --git a/docs/index.md b/docs/index.md index 498a349c..41486546 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,4 @@ -# GBQ - 1.0.1 +# GBQ - 1.0.2 [![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 e228c140..46bcf3e0 100644 --- a/gbq/__init__.py +++ b/gbq/__init__.py @@ -1,5 +1,5 @@ from gbq.bigquery import BigQuery -__version__ = "1.0.1" +__version__ = "1.0.2" __author__ = "Jash Parekh " __all__ = [BigQuery] # type: ignore diff --git a/renovate.json b/renovate.json index 142c76ef..718784ee 100644 --- a/renovate.json +++ b/renovate.json @@ -15,5 +15,16 @@ "pip_requirements": { "fileMatch": ["(^|/)([\\w-]*)requirements[-\\w]*\\.(txt|pip)$"] - } + }, + + "packageRules": [ + { + "postUpgradeTasks": { + "commands": ["bash docker/lock_requirements.sh"], + "fileFilters": ["requirements.lock"], + "executionMode": "branch" + }, + "matchManagers": ["pip_requirements"] + } + ] } diff --git a/setup.cfg b/setup.cfg index 75b4ebf8..c9398a3f 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.1 +version = 1.0.2 description = Python wrapper for interacting Google BigQuery. long_description = file: README.md long_description_content_type = text/markdown