From fd1b4921c44ed0e72937f69863a3b6ad1e2a8184 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Fri, 16 Feb 2024 22:21:44 +0000 Subject: [PATCH] Bumping version to 1.7.5 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.7.5.md | 5 +++++ .changes/unreleased/Fixes-20240216-133319.yaml | 6 ------ CHANGELOG.md | 10 ++++++++-- dbt/adapters/bigquery/__version__.py | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 11 deletions(-) create mode 100644 .changes/1.7.5.md delete mode 100644 .changes/unreleased/Fixes-20240216-133319.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 21e21bc8c..24738d3bf 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.4 +current_version = 1.7.5 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.5.md b/.changes/1.7.5.md new file mode 100644 index 000000000..7b9f4590f --- /dev/null +++ b/.changes/1.7.5.md @@ -0,0 +1,5 @@ +## dbt-bigquery 1.7.5 - February 16, 2024 + +### Fixes + +- remove `token` field from connection keys ([#1105](https://github.com/dbt-labs/dbt-bigquery/issues/1105)) diff --git a/.changes/unreleased/Fixes-20240216-133319.yaml b/.changes/unreleased/Fixes-20240216-133319.yaml deleted file mode 100644 index cb8a2156e..000000000 --- a/.changes/unreleased/Fixes-20240216-133319.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: remove `token` field from connection keys -time: 2024-02-16T13:33:19.524482-08:00 -custom: - Author: versusfacit - Issue: "1105" diff --git a/CHANGELOG.md b/CHANGELOG.md index f92e0d666..4df4e2950 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ - "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.7.5 - February 16, 2024 + +### Fixes + +- remove `token` field from connection keys ([#1105](https://github.com/dbt-labs/dbt-bigquery/issues/1105)) + + + ## dbt-bigquery 1.7.4 - February 01, 2024 ### Fixes @@ -12,8 +20,6 @@ - Fixed issue where materialized views were failing on re-run with minimal config parameters ([#1007](https://github.com/dbt-labs/dbt-bigquery/issues/1007)) - Fix null column index issue during `dbt docs generate` for external tables ([#1079](https://github.com/dbt-labs/dbt-bigquery/issues/1079)) - - ## dbt-bigquery 1.7.3 - January 22, 2024 ### Features diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 582554e87..57a819f4f 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.7.4" +version = "1.7.5" diff --git a/setup.py b/setup.py index e48f0b638..97cfd357a 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.7.4" +package_version = "1.7.5" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""