diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cfd0cac24..bf27196dc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.8.1 +current_version = 1.8.2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.8.2.md b/.changes/1.8.2.md new file mode 100644 index 000000000..1f977b7d2 --- /dev/null +++ b/.changes/1.8.2.md @@ -0,0 +1,5 @@ +## dbt-bigquery 1.8.2 - June 20, 2024 + +### Fixes + +- 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-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 6280fd0bc..fecdec01d 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.8.2 - June 20, 2024 + +### Fixes + +- 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.8.1 - May 15, 2024 ### Features @@ -15,8 +23,6 @@ - Default `enableListInference` to `True` for python models to support nested lists ([#1047](https://github.com/dbt-labs/dbt-bigquery/issues/1047), [#1114](https://github.com/dbt-labs/dbt-bigquery/issues/1114)) - - ## dbt-bigquery 1.8.0 - May 09, 2024 ### Features diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 72126ce16..ba22724db 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.8.1" +version = "1.8.2"