From c4c49fdc4b811de85fd562d11fa1a78ba166ffa1 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 28 Mar 2024 02:55:38 +0000 Subject: [PATCH] Bumping version to 1.4.5 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.4.5.md | 8 ++++++++ .changes/unreleased/Fixes-20240327-210249.yaml | 7 ------- CHANGELOG.md | 11 ++++++++++- dbt/adapters/bigquery/__version__.py | 2 +- setup.py | 2 +- 6 files changed, 21 insertions(+), 11 deletions(-) create mode 100644 .changes/1.4.5.md delete mode 100644 .changes/unreleased/Fixes-20240327-210249.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 49f3804cc..1538d356a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.4 +current_version = 1.4.5 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.4.5.md b/.changes/1.4.5.md new file mode 100644 index 000000000..799483902 --- /dev/null +++ b/.changes/1.4.5.md @@ -0,0 +1,8 @@ +## dbt-bigquery 1.4.5 - March 28, 2024 + +### Fixes + +- Add `pandas` extra for `google-cloud-bigquery` to pick up missing `pyarrow` dependency ([#1152](https://github.com/dbt-labs/dbt-bigquery/issues/1152)) + +### Contributors +- [@mikealfare](https://github.com/mikealfare) ([#1152](https://github.com/dbt-labs/dbt-bigquery/issues/1152)) diff --git a/.changes/unreleased/Fixes-20240327-210249.yaml b/.changes/unreleased/Fixes-20240327-210249.yaml deleted file mode 100644 index 04a5c5e38..000000000 --- a/.changes/unreleased/Fixes-20240327-210249.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: Add `pandas` extra for `google-cloud-bigquery` to pick up missing `pyarrow` - dependency -time: 2024-03-27T21:02:49.619691-04:00 -custom: - Author: mikealfare - Issue: "1152" diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a0780ea3..7437adfca 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.4.5 - March 28, 2024 + +### Fixes + +- Add `pandas` extra for `google-cloud-bigquery` to pick up missing `pyarrow` dependency ([#1152](https://github.com/dbt-labs/dbt-bigquery/issues/1152)) + +### Contributors +- [@mikealfare](https://github.com/mikealfare) ([#1152](https://github.com/dbt-labs/dbt-bigquery/issues/1152)) + + ## dbt-bigquery 1.4.4 - August 04, 2023 ### Breaking Changes @@ -21,7 +31,6 @@ - [@dbeatty10](https://github.com/dbeatty10) ([#849](https://github.com/dbt-labs/dbt-bigquery/issues/849)) - [@mikealfare](https://github.com/mikealfare) ([#dbt-labs/dbt-core/7082](https://github.com/dbt-labs/dbt-bigquery/issues/dbt-labs/dbt-core/7082), [#614](https://github.com/dbt-labs/dbt-bigquery/issues/614)) - ## dbt-bigquery 1.4.3 - March 16, 2023 ### Fixes diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 98da246a2..776c084b5 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.4.4" +version = "1.4.5" diff --git a/setup.py b/setup.py index 5ee60fe66..0dd905fc6 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.4.4" +package_version = "1.4.5" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""