From 3803504049ff042a5ed9889db760027586958f09 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 16 Mar 2023 20:38:43 +0000 Subject: [PATCH] Bumping version to 1.3.2 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.3.2.md | 5 +++++ .changes/unreleased/Fixes-20230315-130504.yaml | 6 ------ CHANGELOG.md | 10 ++++++++-- dbt/adapters/bigquery/__version__.py | 2 +- setup.py | 4 ++-- 6 files changed, 17 insertions(+), 12 deletions(-) create mode 100644 .changes/1.3.2.md delete mode 100644 .changes/unreleased/Fixes-20230315-130504.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4cdda0db7..31cf2f420 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.1 +current_version = 1.3.2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.3.2.md b/.changes/1.3.2.md new file mode 100644 index 000000000..adf395b02 --- /dev/null +++ b/.changes/1.3.2.md @@ -0,0 +1,5 @@ +## 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)) diff --git a/.changes/unreleased/Fixes-20230315-130504.yaml b/.changes/unreleased/Fixes-20230315-130504.yaml deleted file mode 100644 index 5229dca17..000000000 --- a/.changes/unreleased/Fixes-20230315-130504.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix failing test by removing no erroneous asserts. -time: 2023-03-15T13:05:04.747323-07:00 -custom: - Author: versusfacit - Issue: "605" diff --git a/CHANGELOG.md b/CHANGELOG.md index 9187e989c..63e0dfea2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ - "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 + +### 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 ### Fixes @@ -15,8 +23,6 @@ - fix issue with tox 4.0.0 release which changes passenv syntax for space-separated variables ([#411](https://github.com/dbt-labs/dbt-bigquery/issues/411)) - - ## dbt-bigquery 1.3.0 - October 12, 2022 ### Features - Implement `create_schema` via SQL, instead of Python method, allowing users to override if desired. drop_schema remains a Python method for the time being. ([#182](https://github.com/dbt-labs/dbt-bigquery/issues/182), [#183](https://github.com/dbt-labs/dbt-bigquery/pull/183)) diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 35ec9a371..2238c8f69 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.3.1" +version = "1.3.2" diff --git a/setup.py b/setup.py index 726ed9f1a..22c08252d 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ def _get_dbt_core_version(): package_name = "dbt-bigquery" -package_version = "1.3.1" +package_version = "1.3.2" 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.1,<3", + "google-cloud-core>=1.3.2,<3", "google-cloud-bigquery>=1.25.0,<3", "google-api-core>=1.16.0,<3", "googleapis-common-protos>=1.6.0,<2",