From c211f0a6ba1afeb0d6ae3de14860ad5d215f7445 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 2 Mar 2023 19:26:38 +0000 Subject: [PATCH] Bumping version to 1.5.0b2 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.5.0-b2.md | 5 +++++ .../Under the Hood-20230223-105149.yaml | 0 CHANGELOG.md | 9 ++++++++- dbt/adapters/bigquery/__version__.py | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 .changes/1.5.0-b2.md rename .changes/{unreleased => 1.5.0}/Under the Hood-20230223-105149.yaml (100%) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c8ca74834..8d5440a31 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.0b1 +current_version = 1.5.0b2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.0-b2.md b/.changes/1.5.0-b2.md new file mode 100644 index 000000000..a214d458c --- /dev/null +++ b/.changes/1.5.0-b2.md @@ -0,0 +1,5 @@ +## dbt-bigquery 1.5.0-b2 - March 02, 2023 + +### Under the Hood + +- Rename constraints_enabled to contract ([#548](https://github.com/dbt-labs/dbt-bigquery/issues/548)) diff --git a/.changes/unreleased/Under the Hood-20230223-105149.yaml b/.changes/1.5.0/Under the Hood-20230223-105149.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20230223-105149.yaml rename to .changes/1.5.0/Under the Hood-20230223-105149.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index b922a3e12..48ed63e9d 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.5.0-b2 - March 02, 2023 + +### Under the Hood + +- Rename constraints_enabled to contract ([#548](https://github.com/dbt-labs/dbt-bigquery/issues/548)) + + + ## dbt-bigquery 1.5.0-b1 - February 22, 2023 ### Features @@ -27,7 +35,6 @@ - [@dave-connors-3](https://github.com/dave-connors-3) ([#5260](https://github.com/dbt-labs/dbt-bigquery/issues/5260)) - [@victoriapm](https://github.com/victoriapm) ([#444](https://github.com/dbt-labs/dbt-bigquery/issues/444)) - ## Previous Releases For information on prior major and minor releases, see their changelogs: * [1.4](https://github.com/dbt-labs/dbt-bigquery/blob/1.4.latest/CHANGELOG.md) diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index c3758128c..4f8b15313 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.5.0b1" +version = "1.5.0b2" diff --git a/setup.py b/setup.py index 2d015f7a5..7603a3498 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.5.0b1" +package_version = "1.5.0b2" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""