From 1b26507fc569371dc6c7c9514badce373a692d4e Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 16 Mar 2023 20:36:40 +0000 Subject: [PATCH] Bumping version to 1.1.2 and generate changelog --- .bumpversion.cfg | 8 +------- .changes/1.1.2.md | 9 +++++++++ .changes/unreleased/Fixes-20230315-130504.yaml | 6 ------ .../Under the Hood-20220805-155615.yaml | 7 ------- CHANGELOG.md | 17 ++++++++++++++++- dbt/adapters/bigquery/__version__.py | 2 +- setup.py | 2 +- 7 files changed, 28 insertions(+), 23 deletions(-) create mode 100644 .changes/1.1.2.md delete mode 100644 .changes/unreleased/Fixes-20230315-130504.yaml delete mode 100644 .changes/unreleased/Under the Hood-20220805-155615.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index dc86bc85c..e5f474122 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,11 +1,5 @@ [bumpversion] -current_version = 1.1.1 - -# `parse` allows parsing the version into the parts we need to check. There are some -# unnamed groups and that's okay because they do not need to be audited. If any part -# of the version passed and does not match the regex, it will fail. -# expected matches: `1.5.0`, `1.5.0a1`, `1.5.0a1.dev123457+nightly` -# excepted failures: `1`, `1.5`, `1.5.2-a1`, `text1.5.0` +current_version = 1.1.2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.1.2.md b/.changes/1.1.2.md new file mode 100644 index 000000000..8825460c4 --- /dev/null +++ b/.changes/1.1.2.md @@ -0,0 +1,9 @@ +## dbt-bigquery 1.1.2 - March 16, 2023 + +### Fixes + +- Fix failing test by removing no erroneous asserts. ([#605](https://github.com/dbt-labs/dbt-bigquery/issues/605)) + +### Under the Hood + +- backport changie to 1.1.latest ([#254](https://github.com/dbt-labs/dbt-bigquery/issues/254)) 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/.changes/unreleased/Under the Hood-20220805-155615.yaml b/.changes/unreleased/Under the Hood-20220805-155615.yaml deleted file mode 100644 index e8c0da172..000000000 --- a/.changes/unreleased/Under the Hood-20220805-155615.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Under the Hood -body: backport changie to 1.1.latest -time: 2022-08-05T15:56:15.224571-05:00 -custom: - Author: mcknight-42 - Issue: "254" - PR: "256" diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d623dadf..7b5941222 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ - Changes are listed under the (pre)release in which they first appear. Subsequent releases include changes from previous releases. - "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.1.2 - March 16, 2023 + +### Fixes + +- Fix failing test by removing no erroneous asserts. ([#605](https://github.com/dbt-labs/dbt-bigquery/issues/605)) + +### Under the Hood + +- backport changie to 1.1.latest ([#254](https://github.com/dbt-labs/dbt-bigquery/issues/254)) + + + ## dbt-bigquery 1.1.1 - July 5, 2022 ### Fixes @@ -40,6 +53,8 @@ This will prevent BigQuery from throwing an error since non-partitioned tables c - [@yu-iskw](https://github.com/yu-iskw)([#108](https://github.com/dbt-labs/dbt-bigquery/pull/108)) - [@pgoslatara](https://github.com/pgoslatara) ([#66](https://github.com/dbt-labs/dbt-bigquery/pull/121)) - [@drewmcdonald](https://github.com/drewmcdonald)([#98](https://github.com/dbt-labs/dbt-bigquery/pull/98)) -- [@rjh336](https://github.com/rjh336)([#79](https://github.com/dbt-labs/dbt-bigquery/pull/79))## Previous Releases +- [@rjh336](https://github.com/rjh336)([#79](https://github.com/dbt-labs/dbt-bigquery/pull/79)) + +## Previous Releases For information on prior major and minor releases, see their changelogs: - [1.0](https://github.com/dbt-labs/dbt-bigquery/blob/1.0.latest/CHANGELOG.md) diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 64c8c21b1..e673db0c0 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.1.1" +version = "1.1.2" diff --git a/setup.py b/setup.py index a891a876b..f53b0b249 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ def _get_dbt_core_version(): package_name = "dbt-bigquery" -package_version = "1.1.1" +package_version = "1.1.2" dbt_core_version = _get_dbt_core_version() description = """The BigQuery adapter plugin for dbt"""