From ed3189286d6005f84e504b7568e29ab8f2de0c79 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 May 2023 14:19:08 -0500 Subject: [PATCH] [create-pull-request] automated change (#786) Co-authored-by: Github Build Bot --- .bumpversion.cfg | 2 +- .changes/1.6.0-b2.md | 5 +++++ .../{unreleased => 1.6.0}/Features-20230427-123135.yaml | 0 CHANGELOG.md | 9 ++++++++- dbt/adapters/spark/__version__.py | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 .changes/1.6.0-b2.md rename .changes/{unreleased => 1.6.0}/Features-20230427-123135.yaml (100%) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7540a87b3..c218e1c7b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.0b1 +current_version = 1.6.0b2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.0-b2.md b/.changes/1.6.0-b2.md new file mode 100644 index 000000000..ea758062d --- /dev/null +++ b/.changes/1.6.0-b2.md @@ -0,0 +1,5 @@ +## dbt-spark 1.6.0-b2 - May 25, 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)) diff --git a/.changes/unreleased/Features-20230427-123135.yaml b/.changes/1.6.0/Features-20230427-123135.yaml similarity index 100% rename from .changes/unreleased/Features-20230427-123135.yaml rename to .changes/1.6.0/Features-20230427-123135.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index d141dcb34..ec26d1068 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-spark/blob/main/CONTRIBUTING.md#adding-changelog-entry) +## dbt-spark 1.6.0-b2 - May 25, 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)) + + + ## dbt-spark 1.6.0-b1 - May 12, 2023 ### Features @@ -37,7 +45,6 @@ - [@Fokko](https://github.com/Fokko) ([#758](https://github.com/dbt-labs/dbt-spark/issues/758), [#753](https://github.com/dbt-labs/dbt-spark/issues/753)) - [@flvndh](https://github.com/flvndh) ([#1013](https://github.com/dbt-labs/dbt-spark/issues/1013)) - ## dbt-spark 1.6.0-a1 - April 17, 2023 ## Previous Releases diff --git a/dbt/adapters/spark/__version__.py b/dbt/adapters/spark/__version__.py index cafa91966..21c2b2836 100644 --- a/dbt/adapters/spark/__version__.py +++ b/dbt/adapters/spark/__version__.py @@ -1 +1 @@ -version = "1.6.0b1" +version = "1.6.0b2" diff --git a/setup.py b/setup.py index 15cf8efa3..914c553ca 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ def _get_dbt_core_version(): package_name = "dbt-spark" -package_version = "1.6.0b1" +package_version = "1.6.0b2" dbt_core_version = _get_dbt_core_version() description = """The Apache Spark adapter plugin for dbt"""