diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8cbc7c837..21e21bc8c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.3 +current_version = 1.7.4 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.4.md b/.changes/1.7.4.md new file mode 100644 index 000000000..bd8470fb0 --- /dev/null +++ b/.changes/1.7.4.md @@ -0,0 +1,6 @@ +## dbt-bigquery 1.7.4 - February 01, 2024 + +### Fixes + +- 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)) diff --git a/.changes/unreleased/Fixes-20231107-174352.yaml b/.changes/unreleased/Fixes-20231107-174352.yaml deleted file mode 100644 index 80592758d..000000000 --- a/.changes/unreleased/Fixes-20231107-174352.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: Fixed issue where materialized views were failing on re-run with minimal config - parameters -time: 2023-11-07T17:43:52.972135-05:00 -custom: - Author: "mikealfare" - Issue: "1007" diff --git a/.changes/unreleased/Fixes-20240201-145323.yaml b/.changes/unreleased/Fixes-20240201-145323.yaml deleted file mode 100644 index ea198e54a..000000000 --- a/.changes/unreleased/Fixes-20240201-145323.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix null column index issue during `dbt docs generate` for external tables -time: 2024-02-01T14:53:23.434624-05:00 -custom: - Author: mikealfare - Issue: "1079" diff --git a/CHANGELOG.md b/CHANGELOG.md index 94d38878d..f92e0d666 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ - "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.4 - February 01, 2024 + +### Fixes + +- 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 @@ -17,8 +26,6 @@ - replace deterministic batch_id with uuid ([#1006](https://github.com/dbt-labs/dbt-bigquery/issues/1006)) - remove json patch to leverage bigquery-python improvement ([#1055](https://github.com/dbt-labs/dbt-bigquery/issues/1055)) - - ## dbt-bigquery 1.7.2 - November 09, 2023 ### Fixes diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index a26c30165..582554e87 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.7.3" +version = "1.7.4" diff --git a/setup.py b/setup.py index 336dcab1a..e48f0b638 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.3" +package_version = "1.7.4" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""