From 465d8678efb45e39f63796934e9f7c3f18db52da Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Wed, 1 Nov 2023 14:34:22 +0000 Subject: [PATCH] Bumping version to 1.6.8 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.6.8.md | 10 ++++++++++ .changes/unreleased/Fixes-20231023-082312.yaml | 6 ------ .changes/unreleased/Fixes-20231025-131907.yaml | 6 ------ CHANGELOG.md | 13 ++++++++++++- dbt/adapters/bigquery/__version__.py | 2 +- setup.py | 2 +- 7 files changed, 25 insertions(+), 16 deletions(-) create mode 100644 .changes/1.6.8.md delete mode 100644 .changes/unreleased/Fixes-20231023-082312.yaml delete mode 100644 .changes/unreleased/Fixes-20231025-131907.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 62cdeb7be..3dbd56f78 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.7 +current_version = 1.6.8 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.8.md b/.changes/1.6.8.md new file mode 100644 index 000000000..e3fc2bcd5 --- /dev/null +++ b/.changes/1.6.8.md @@ -0,0 +1,10 @@ +## dbt-bigquery 1.6.8 - November 01, 2023 + +### Fixes + +- Patch for json inline --show ([#972](https://github.com/dbt-labs/dbt-bigquery/issues/972)) +- Lower bound of `2.11.0` for `google-api-core` ([#979](https://github.com/dbt-labs/dbt-bigquery/issues/979)) + +### Contributors +- [@gmyrianthous](https://github.com/gmyrianthous) ([#979](https://github.com/dbt-labs/dbt-bigquery/issues/979)) +- [@matt-winkler](https://github.com/matt-winkler) ([#972](https://github.com/dbt-labs/dbt-bigquery/issues/972)) diff --git a/.changes/unreleased/Fixes-20231023-082312.yaml b/.changes/unreleased/Fixes-20231023-082312.yaml deleted file mode 100644 index 368c58e95..000000000 --- a/.changes/unreleased/Fixes-20231023-082312.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Patch for json inline --show -time: 2023-10-23T08:23:12.245223-06:00 -custom: - Author: matt-winkler - Issue: "972" diff --git a/.changes/unreleased/Fixes-20231025-131907.yaml b/.changes/unreleased/Fixes-20231025-131907.yaml deleted file mode 100644 index 9a3b8d8a8..000000000 --- a/.changes/unreleased/Fixes-20231025-131907.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Lower bound of `2.11.0` for `google-api-core` -time: 2023-10-25T13:19:07.580826-06:00 -custom: - Author: gmyrianthous dbeatty10 - Issue: "979" diff --git a/CHANGELOG.md b/CHANGELOG.md index aea5b9e1c..f8a2b9511 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ - "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.8 - November 01, 2023 + +### Fixes + +- Patch for json inline --show ([#972](https://github.com/dbt-labs/dbt-bigquery/issues/972)) +- Lower bound of `2.11.0` for `google-api-core` ([#979](https://github.com/dbt-labs/dbt-bigquery/issues/979)) + +### Contributors +- [@gmyrianthous](https://github.com/gmyrianthous) ([#979](https://github.com/dbt-labs/dbt-bigquery/issues/979)) +- [@matt-winkler](https://github.com/matt-winkler) ([#972](https://github.com/dbt-labs/dbt-bigquery/issues/972)) + + ## dbt-bigquery 1.6.7 - October 09, 2023 ### Fixes @@ -14,7 +26,6 @@ ### Contributors - [@kodaho](https://github.com/kodaho) ([#863](https://github.com/dbt-labs/dbt-bigquery/issues/863)) - ## dbt-bigquery 1.6.6 - September 28, 2023 ### Fixes diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 26a0a0131..4776ab889 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.6.7" +version = "1.6.8" diff --git a/setup.py b/setup.py index 60ab7c0c3..18394ea4a 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.7" +package_version = "1.6.8" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""