diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 24738d3bf..c7237393b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.5 +current_version = 1.7.6 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.6.md b/.changes/1.7.6.md new file mode 100644 index 000000000..1f14f9a6a --- /dev/null +++ b/.changes/1.7.6.md @@ -0,0 +1,5 @@ +## dbt-bigquery 1.7.6 - February 22, 2024 + +### Fixes + +- Remove custom query job async timeout logic as it has been fixed in bigquery-python ([#1081](https://github.com/dbt-labs/dbt-bigquery/issues/1081)) diff --git a/.changes/unreleased/Fixes-20240219-103324.yaml b/.changes/unreleased/Fixes-20240219-103324.yaml deleted file mode 100644 index 16906db85..000000000 --- a/.changes/unreleased/Fixes-20240219-103324.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Remove custom query job async timeout logic as it has been fixed in bigquery-python -time: 2024-02-19T10:33:24.3385-08:00 -custom: - Author: colin-rogers-dbt - Issue: "1081" diff --git a/CHANGELOG.md b/CHANGELOG.md index 4df4e2950..0bc0a1442 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,19 @@ - "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 +## dbt-bigquery 1.7.6 - February 22, 2024 ### Fixes -- remove `token` field from connection keys ([#1105](https://github.com/dbt-labs/dbt-bigquery/issues/1105)) +- Remove custom query job async timeout logic as it has been fixed in bigquery-python ([#1081](https://github.com/dbt-labs/dbt-bigquery/issues/1081)) + + +## 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 diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 57a819f4f..72f4cc284 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.7.5" +version = "1.7.6" diff --git a/setup.py b/setup.py index 97cfd357a..1f9b4f5d6 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.5" +package_version = "1.7.6" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""