From bf2d391db8c25f1e7ef4f58f4e8475fa5f938122 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Fri, 4 Aug 2023 16:58:36 +0000 Subject: [PATCH] Bumping version to 1.6.1 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.6.1.md | 8 ++++++++ .changes/unreleased/Fixes-20230803-102915.yaml | 6 ------ CHANGELOG.md | 11 ++++++++++- dbt/adapters/bigquery/__version__.py | 2 +- setup.py | 2 +- 6 files changed, 21 insertions(+), 10 deletions(-) create mode 100644 .changes/1.6.1.md delete mode 100644 .changes/unreleased/Fixes-20230803-102915.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7d53c2155..45d822170 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.0 +current_version = 1.6.1 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.1.md b/.changes/1.6.1.md new file mode 100644 index 000000000..2a331c9e9 --- /dev/null +++ b/.changes/1.6.1.md @@ -0,0 +1,8 @@ +## dbt-bigquery 1.6.1 - August 04, 2023 + +### Fixes + +- Requiring Python >=3.8 enables walrus operator ([#849](https://github.com/dbt-labs/dbt-bigquery/issues/849)) + +### Contributors +- [@cemsbr](https://github.com/cemsbr) ([#849](https://github.com/dbt-labs/dbt-bigquery/issues/849)) diff --git a/.changes/unreleased/Fixes-20230803-102915.yaml b/.changes/unreleased/Fixes-20230803-102915.yaml deleted file mode 100644 index 6070fb448..000000000 --- a/.changes/unreleased/Fixes-20230803-102915.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Requiring Python >=3.8 enables walrus operator -time: 2023-08-03T10:29:15.371798-06:00 -custom: - Author: cemsbr dbeatty10 - Issue: "849" diff --git a/CHANGELOG.md b/CHANGELOG.md index b6af02829..a0b9efb18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ - "Breaking changes" listed under a version may require action from end users or external maintainers when upgrading to that version. - Do not edit this file directly. This file is auto-generated using [changie](https://github.com/miniscruff/changie). For details on how to document a change, see [the contributing guide](https://github.com/dbt-labs/dbt-bigquery/blob/main/CONTRIBUTING.md#adding-changelog-entry) +## dbt-bigquery 1.6.1 - August 04, 2023 + +### Fixes + +- Requiring Python >=3.8 enables walrus operator ([#849](https://github.com/dbt-labs/dbt-bigquery/issues/849)) + +### Contributors +- [@cemsbr](https://github.com/cemsbr) ([#849](https://github.com/dbt-labs/dbt-bigquery/issues/849)) + + ## dbt-bigquery 1.6.0 - July 31, 2023 ### Breaking Changes @@ -56,7 +66,6 @@ - [@dgreen161](https://github.com/dgreen161) ([#687](https://github.com/dbt-labs/dbt-bigquery/issues/687)) - [@tlento](https://github.com/tlento) ([#805](https://github.com/dbt-labs/dbt-bigquery/issues/805)) - ## Previous Releases For information on prior major and minor releases, see their changelogs: - [1.5](https://github.com/dbt-labs/dbt-bigquery/blob/1.5.latest/CHANGELOG.md) diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 38ec8ede9..cead7e895 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.6.0" +version = "1.6.1" diff --git a/setup.py b/setup.py index af0f2805e..1d7db89f9 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ def _dbt_core_version(plugin_version: str) -> str: package_name = "dbt-bigquery" -package_version = "1.6.0" +package_version = "1.6.1" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""