From 2281f027f9809035406cb89c574ec4b6850358ea Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Fri, 4 Aug 2023 16:55:54 +0000 Subject: [PATCH] Bumping version to 1.3.3 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.3.3.md | 14 ++++++++++++++ .../Breaking Changes-20230530-174051.yaml | 6 ------ .changes/unreleased/Fixes-20230803-102915.yaml | 6 ------ CHANGELOG.md | 18 ++++++++++++++++-- dbt/adapters/bigquery/__version__.py | 2 +- setup.py | 4 ++-- 7 files changed, 34 insertions(+), 18 deletions(-) create mode 100644 .changes/1.3.3.md delete mode 100644 .changes/unreleased/Breaking Changes-20230530-174051.yaml delete mode 100644 .changes/unreleased/Fixes-20230803-102915.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 31cf2f420..1e1bb7b6a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.2 +current_version = 1.3.3 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.3.3.md b/.changes/1.3.3.md new file mode 100644 index 000000000..c5de4a5ca --- /dev/null +++ b/.changes/1.3.3.md @@ -0,0 +1,14 @@ +## dbt-bigquery 1.3.3 - August 04, 2023 + +### Breaking Changes + +- Drop support for python 3.7 ([#dbt-labs/dbt-core/7082](https://github.com/dbt-labs/dbt-bigquery/issues/dbt-labs/dbt-core/7082)) + +### Fixes + +- Requiring Python >=3.8 enables walrus operator ([#849](https://github.com/dbt-labs/dbt-bigquery/issues/849)) + +### Contributors +- [@cemsbr](https://github.com/cemsbr) ([#849](https://github.com/dbt-labs/dbt-bigquery/issues/849)) +- [@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)) diff --git a/.changes/unreleased/Breaking Changes-20230530-174051.yaml b/.changes/unreleased/Breaking Changes-20230530-174051.yaml deleted file mode 100644 index c4d90db97..000000000 --- a/.changes/unreleased/Breaking Changes-20230530-174051.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Breaking Changes -body: Drop support for python 3.7 -time: 2023-05-30T17:40:51.510639-04:00 -custom: - Author: mikealfare - Issue: dbt-labs/dbt-core/7082 diff --git a/.changes/unreleased/Fixes-20230803-102915.yaml b/.changes/unreleased/Fixes-20230803-102915.yaml deleted file mode 100644 index 6070fb448..000000000 --- a/.changes/unreleased/Fixes-20230803-102915.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Requiring Python >=3.8 enables walrus operator -time: 2023-08-03T10:29:15.371798-06:00 -custom: - Author: cemsbr dbeatty10 - Issue: "849" diff --git a/CHANGELOG.md b/CHANGELOG.md index 63e0dfea2..d3adb73ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,27 @@ - "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.3.2 - March 16, 2023 +## dbt-bigquery 1.3.3 - August 04, 2023 + +### Breaking Changes + +- Drop support for python 3.7 ([#dbt-labs/dbt-core/7082](https://github.com/dbt-labs/dbt-bigquery/issues/dbt-labs/dbt-core/7082)) ### Fixes -- Fix failing test by removing no erroneous asserts. ([#605](https://github.com/dbt-labs/dbt-bigquery/issues/605)) +- Requiring Python >=3.8 enables walrus operator ([#849](https://github.com/dbt-labs/dbt-bigquery/issues/849)) + +### Contributors +- [@cemsbr](https://github.com/cemsbr) ([#849](https://github.com/dbt-labs/dbt-bigquery/issues/849)) +- [@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)) +## dbt-bigquery 1.3.2 - March 16, 2023 + +### Fixes + +- Fix failing test by removing no erroneous asserts. ([#605](https://github.com/dbt-labs/dbt-bigquery/issues/605)) ## dbt-bigquery 1.3.1 - February 14, 2023 diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 2238c8f69..cfa2db681 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.3.2" +version = "1.3.3" diff --git a/setup.py b/setup.py index de3d66438..3c39f5250 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ def _get_dbt_core_version(): package_name = "dbt-bigquery" -package_version = "1.3.2" +package_version = "1.3.3" dbt_core_version = _get_dbt_core_version() description = """The BigQuery adapter plugin for dbt""" @@ -68,7 +68,7 @@ def _get_dbt_core_version(): install_requires=[ "dbt-core~={}".format(dbt_core_version), "protobuf>=3.13.0,<4", - "google-cloud-core>=1.3.2,<3", + "google-cloud-core>=1.3.3,<3", "google-cloud-bigquery>=1.25.0,<3", "google-api-core>=1.16.0,<3", "googleapis-common-protos>=1.6.0,<2",