From 2ec5ad6ad861007e4fb6c270df6cdad986611ea6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 1 Aug 2023 15:26:38 -0400 Subject: [PATCH] [create-pull-request] automated change (#844) Co-authored-by: Github Build Bot --- .bumpversion.cfg | 2 +- .changes/1.5.1.md | 9 +++++++++ .changes/unreleased/Features-20230427-123135.yaml | 6 ------ .changes/unreleased/Fixes-20230512-151453.yaml | 6 ------ CHANGELOG.md | 13 ++++++++++++- dbt/adapters/spark/__version__.py | 2 +- setup.py | 2 +- 7 files changed, 24 insertions(+), 16 deletions(-) create mode 100644 .changes/1.5.1.md delete mode 100644 .changes/unreleased/Features-20230427-123135.yaml delete mode 100644 .changes/unreleased/Fixes-20230512-151453.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 59dc92a20..cbdd15f9b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.0 +current_version = 1.5.1 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.1.md b/.changes/1.5.1.md new file mode 100644 index 000000000..3275a1f7f --- /dev/null +++ b/.changes/1.5.1.md @@ -0,0 +1,9 @@ +## dbt-spark 1.5.1 - July 31, 2023 + +### Features + +- All constraint types are supported, but not enforced. ([#656](https://github.com/dbt-labs/dbt-spark/issues/656), [#657](https://github.com/dbt-labs/dbt-spark/issues/657)) + +### Fixes + +- Wrap expression for check constraints in parentheses ([#7480](https://github.com/dbt-labs/dbt-spark/issues/7480)) diff --git a/.changes/unreleased/Features-20230427-123135.yaml b/.changes/unreleased/Features-20230427-123135.yaml deleted file mode 100644 index a1cf88be5..000000000 --- a/.changes/unreleased/Features-20230427-123135.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: All constraint types are supported, but not enforced. -time: 2023-04-27T12:31:35.011284-04:00 -custom: - Author: peterallenwebb - Issue: 656 657 diff --git a/.changes/unreleased/Fixes-20230512-151453.yaml b/.changes/unreleased/Fixes-20230512-151453.yaml deleted file mode 100644 index e10a30e70..000000000 --- a/.changes/unreleased/Fixes-20230512-151453.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Wrap expression for check constraints in parentheses -time: 2023-05-12T15:14:53.151149-04:00 -custom: - Author: michelleark - Issue: "7480" diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b6f759be..9ea65acba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ - "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-spark/blob/main/CONTRIBUTING.md#adding-changelog-entry) +## dbt-spark 1.5.1 - July 31, 2023 + +### Features + +- All constraint types are supported, but not enforced. ([#656](https://github.com/dbt-labs/dbt-spark/issues/656), [#657](https://github.com/dbt-labs/dbt-spark/issues/657)) + +### Fixes + +- Wrap expression for check constraints in parentheses ([#7480](https://github.com/dbt-labs/dbt-spark/issues/7480)) + + + ## dbt-spark 1.5.0 - April 27, 2023 ### Features @@ -44,7 +56,6 @@ - [@dave-connors-3](https://github.com/dave-connors-3) ([#00](https://github.com/dbt-labs/dbt-spark/issues/00)) - [@dparent1](https://github.com/dparent1) ([#294](https://github.com/dbt-labs/dbt-spark/issues/294)) - ## Previous Releases For information on prior major and minor releases, see their changelogs: - [1.4](https://github.com/dbt-labs/dbt-spark/blob/1.4.latest/CHANGELOG.md) diff --git a/dbt/adapters/spark/__version__.py b/dbt/adapters/spark/__version__.py index e3a0f0153..0c46db4fa 100644 --- a/dbt/adapters/spark/__version__.py +++ b/dbt/adapters/spark/__version__.py @@ -1 +1 @@ -version = "1.5.0" +version = "1.5.1" diff --git a/setup.py b/setup.py index 6396f6463..53dbf1361 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ def _get_dbt_core_version(): package_name = "dbt-spark" -package_version = "1.5.0" +package_version = "1.5.1" dbt_core_version = _get_dbt_core_version() description = """The Apache Spark adapter plugin for dbt"""