From db0156e7c79927bd34111c6fbfd2d0ab72c2410b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 10:12:25 -0700 Subject: [PATCH] [create-pull-request] automated change (#909) Co-authored-by: Github Build Bot --- .bumpversion.cfg | 2 +- .changes/1.7.0-rc1.md | 9 +++++++++ .../Features-20230921-180958.yaml | 0 .../Features-20231011-094718.yaml | 0 CHANGELOG.md | 12 +++++++++++- dbt/adapters/spark/__version__.py | 2 +- setup.py | 2 +- 7 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 .changes/1.7.0-rc1.md rename .changes/{unreleased => 1.7.0}/Features-20230921-180958.yaml (100%) rename .changes/{unreleased => 1.7.0}/Features-20231011-094718.yaml (100%) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index dbd792cdd..c8f7359c4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.0b2 +current_version = 1.7.0rc1 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.0-rc1.md b/.changes/1.7.0-rc1.md new file mode 100644 index 000000000..726aaf78b --- /dev/null +++ b/.changes/1.7.0-rc1.md @@ -0,0 +1,9 @@ +## dbt-spark 1.7.0-rc1 - October 12, 2023 + +### Features + +- Support storing test failures as views ([#6914](https://github.com/dbt-labs/dbt-spark/issues/6914)) +- Create temporary views with 'or replace' ([#350](https://github.com/dbt-labs/dbt-spark/issues/350)) + +### Contributors +- [@annazizian](https://github.com/annazizian) ([#350](https://github.com/dbt-labs/dbt-spark/issues/350)) diff --git a/.changes/unreleased/Features-20230921-180958.yaml b/.changes/1.7.0/Features-20230921-180958.yaml similarity index 100% rename from .changes/unreleased/Features-20230921-180958.yaml rename to .changes/1.7.0/Features-20230921-180958.yaml diff --git a/.changes/unreleased/Features-20231011-094718.yaml b/.changes/1.7.0/Features-20231011-094718.yaml similarity index 100% rename from .changes/unreleased/Features-20231011-094718.yaml rename to .changes/1.7.0/Features-20231011-094718.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 362976a1a..a96f932ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ - "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.7.0-rc1 - October 12, 2023 + +### Features + +- Support storing test failures as views ([#6914](https://github.com/dbt-labs/dbt-spark/issues/6914)) +- Create temporary views with 'or replace' ([#350](https://github.com/dbt-labs/dbt-spark/issues/350)) + +### Contributors +- [@annazizian](https://github.com/annazizian) ([#350](https://github.com/dbt-labs/dbt-spark/issues/350)) + + ## dbt-spark 1.7.0-b2 - October 02, 2023 ### Features @@ -33,7 +44,6 @@ - [@Fokko](https://github.com/Fokko) ([#876](https://github.com/dbt-labs/dbt-spark/pull/876)) - [@jurasan](https://github.com/jurasan) ([#372](https://github.com/dbt-labs/dbt-spark/issues/372)) - ## dbt-spark 1.7.0-b1 - August 17, 2023 ### Features diff --git a/dbt/adapters/spark/__version__.py b/dbt/adapters/spark/__version__.py index 3f5d3c0b7..748f8f4ea 100644 --- a/dbt/adapters/spark/__version__.py +++ b/dbt/adapters/spark/__version__.py @@ -1 +1 @@ -version = "1.7.0b2" +version = "1.7.0rc1" diff --git a/setup.py b/setup.py index 088e5f87d..0ed8a56d9 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ def _get_dbt_core_version(): package_name = "dbt-spark" -package_version = "1.7.0b2" +package_version = "1.7.0rc1" dbt_core_version = _get_dbt_core_version() description = """The Apache Spark adapter plugin for dbt"""