diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 24a7d75b4..62cdeb7be 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.6 +current_version = 1.6.7 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.7.md b/.changes/1.6.7.md new file mode 100644 index 000000000..81b2126dc --- /dev/null +++ b/.changes/1.6.7.md @@ -0,0 +1,8 @@ +## dbt-bigquery 1.6.7 - October 09, 2023 + +### Fixes + +- Fix issue where job labels are not rendered when using macro for query comment ([#863](https://github.com/dbt-labs/dbt-bigquery/issues/863)) + +### Contributors +- [@kodaho](https://github.com/kodaho) ([#863](https://github.com/dbt-labs/dbt-bigquery/issues/863)) diff --git a/.changes/unreleased/Fixes-20231005-235950.yaml b/.changes/unreleased/Fixes-20231005-235950.yaml deleted file mode 100644 index bf0bf6fa6..000000000 --- a/.changes/unreleased/Fixes-20231005-235950.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix issue where job labels are not rendered when using macro for query comment -time: 2023-10-05T23:59:50.077842+02:00 -custom: - Author: kodaho mikealfare - Issue: "863" diff --git a/CHANGELOG.md b/CHANGELOG.md index d4997dcca..aea5b9e1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ - "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.6.7 - October 09, 2023 + +### Fixes + +- Fix issue where job labels are not rendered when using macro for query comment ([#863](https://github.com/dbt-labs/dbt-bigquery/issues/863)) + +### Contributors +- [@kodaho](https://github.com/kodaho) ([#863](https://github.com/dbt-labs/dbt-bigquery/issues/863)) + + ## dbt-bigquery 1.6.6 - September 28, 2023 ### Fixes @@ -19,7 +29,6 @@ ### Contributors - [@dementiev27](https://github.com/dementiev27) ([#861](https://github.com/dbt-labs/dbt-bigquery/issues/861)) - ## dbt-bigquery 1.6.5 - September 18, 2023 ### Fixes diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 267d3275c..26a0a0131 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.6.6" +version = "1.6.7" diff --git a/setup.py b/setup.py index 0c79ea102..a637364d1 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.6.6" +package_version = "1.6.7" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""