diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 28bbb22f3..98f8be0e4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.7 +current_version = 1.5.8 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.8.md b/.changes/1.5.8.md new file mode 100644 index 000000000..40feaba50 --- /dev/null +++ b/.changes/1.5.8.md @@ -0,0 +1,8 @@ +## dbt-bigquery 1.5.8 - February 01, 2024 + +### Fixes + +- Fix contact validation failure on query data types change ([#861](https://github.com/dbt-labs/dbt-bigquery/issues/861)) + +### Contributors +- [@dementiev27](https://github.com/dementiev27) ([#861](https://github.com/dbt-labs/dbt-bigquery/issues/861)) diff --git a/.changes/unreleased/Fixes-20230804-005817.yaml b/.changes/unreleased/Fixes-20230804-005817.yaml deleted file mode 100644 index 34e0601e1..000000000 --- a/.changes/unreleased/Fixes-20230804-005817.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix contact validation failure on query data types change -time: 2023-08-04T00:58:17.97704+03:00 -custom: - Author: dementiev27 - Issue: "861" diff --git a/CHANGELOG.md b/CHANGELOG.md index d4e38cce4..93a5a182f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,22 @@ - "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.5.8 - February 01, 2024 + +### Fixes + +- Fix contact validation failure on query data types change ([#861](https://github.com/dbt-labs/dbt-bigquery/issues/861)) + +### Contributors +- [@dementiev27](https://github.com/dementiev27) ([#861](https://github.com/dbt-labs/dbt-bigquery/issues/861)) + + ## dbt-bigquery 1.5.7 - September 28, 2023 ### Under the Hood - Add tests for inlined limit + sql-header in dbt show query ([#940](https://github.com/dbt-labs/dbt-bigquery/issues/940)) - - ## dbt-bigquery 1.5.6 - August 21, 2023 ## dbt-bigquery 1.5.5 - August 04, 2023 diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 7d7c707ff..f509e4b0d 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.5.7" +version = "1.5.8" diff --git a/setup.py b/setup.py index e6496d1a2..12a34f767 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.5.7" +package_version = "1.5.8" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""