diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2cf849421..603ba3dee 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.12 +current_version = 1.6.13 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.13.md b/.changes/1.6.13.md new file mode 100644 index 000000000..88424551e --- /dev/null +++ b/.changes/1.6.13.md @@ -0,0 +1 @@ +## dbt-bigquery 1.6.13 - May 02, 2024 diff --git a/CHANGELOG.md b/CHANGELOG.md index 39688d694..42f43b213 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ - "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.13 - May 02, 2024 + + + ## dbt-bigquery 1.6.12 - March 28, 2024 ### Fixes @@ -12,8 +16,6 @@ - remove `keyfile` from `_connection_keys` ([#1146](https://github.com/dbt-labs/dbt-bigquery/issues/1146)) - Add `pandas` extra for `google-cloud-bigquery` to pick up missing `pyarrow` dependency ([#1152](https://github.com/dbt-labs/dbt-bigquery/issues/1152)) - - ## dbt-bigquery 1.6.11 - February 22, 2024 ### Fixes diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 72a815d0f..bfa125150 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.6.12" +version = "1.6.13" diff --git a/setup.py b/setup.py index 1938a3ce2..4ed8d680c 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.12" +package_version = "1.6.13" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""