From da885394070094b6c632b06dabf7a2a4a50e5c0b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 16:01:05 -0400 Subject: [PATCH] [create-pull-request] automated change (#1003) Co-authored-by: Github Build Bot --- .bumpversion.cfg | 2 +- .changes/1.8.0-b2.md | 13 +++++++++++++ .../Dependencies-20240403-135436.yaml | 0 .../Features-20240318-033621.yaml | 0 .../Security-20240327-193553.yaml | 0 CHANGELOG.md | 17 ++++++++++++++++- dbt/adapters/spark/__version__.py | 2 +- setup.py | 2 +- 8 files changed, 32 insertions(+), 4 deletions(-) create mode 100644 .changes/1.8.0-b2.md rename .changes/{unreleased => 1.8.0}/Dependencies-20240403-135436.yaml (100%) rename .changes/{unreleased => 1.8.0}/Features-20240318-033621.yaml (100%) rename .changes/{unreleased => 1.8.0}/Security-20240327-193553.yaml (100%) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 595914b21..aa22c8214 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.8.0b1 +current_version = 1.8.0b2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.8.0-b2.md b/.changes/1.8.0-b2.md new file mode 100644 index 000000000..806d61158 --- /dev/null +++ b/.changes/1.8.0-b2.md @@ -0,0 +1,13 @@ +## dbt-spark 1.8.0-b2 - April 03, 2024 + +### Features + +- : Add new workflow for internal patch releases ([#38](https://github.com/dbt-labs/dbt-spark/issues/38)) + +### Dependencies + +- Add `dbt-core` as a dependency to preserve backwards compatibility for installation ([#1002](https://github.com/dbt-labs/dbt-spark/pull/1002)) + +### Security + +- Pin `black>=24.3` in `dev-requirements.txt` ([#1000](https://github.com/dbt-labs/dbt-spark/pull/1000)) diff --git a/.changes/unreleased/Dependencies-20240403-135436.yaml b/.changes/1.8.0/Dependencies-20240403-135436.yaml similarity index 100% rename from .changes/unreleased/Dependencies-20240403-135436.yaml rename to .changes/1.8.0/Dependencies-20240403-135436.yaml diff --git a/.changes/unreleased/Features-20240318-033621.yaml b/.changes/1.8.0/Features-20240318-033621.yaml similarity index 100% rename from .changes/unreleased/Features-20240318-033621.yaml rename to .changes/1.8.0/Features-20240318-033621.yaml diff --git a/.changes/unreleased/Security-20240327-193553.yaml b/.changes/1.8.0/Security-20240327-193553.yaml similarity index 100% rename from .changes/unreleased/Security-20240327-193553.yaml rename to .changes/1.8.0/Security-20240327-193553.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index d65c50be4..81f0575dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ - "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.8.0-b2 - April 03, 2024 + +### Features + +- : Add new workflow for internal patch releases ([#38](https://github.com/dbt-labs/dbt-spark/issues/38)) + +### Dependencies + +- Add `dbt-core` as a dependency to preserve backwards compatibility for installation ([#1002](https://github.com/dbt-labs/dbt-spark/pull/1002)) + +### Security + +- Pin `black>=24.3` in `dev-requirements.txt` ([#1000](https://github.com/dbt-labs/dbt-spark/pull/1000)) + + + ## dbt-spark 1.8.0-b1 - March 01, 2024 ### Features @@ -45,7 +61,6 @@ - [@JCZuurmond,](https://github.com/JCZuurmond,) ([#719](https://github.com/dbt-labs/dbt-spark/issues/719)) - [@ben-schreiber](https://github.com/ben-schreiber) ([#803](https://github.com/dbt-labs/dbt-spark/issues/803)) - ## Previous Releases For information on prior major and minor releases, see their changelogs: - [1.6](https://github.com/dbt-labs/dbt-spark/blob/1.6.latest/CHANGELOG.md) diff --git a/dbt/adapters/spark/__version__.py b/dbt/adapters/spark/__version__.py index 6496f3e22..7d16c28f0 100644 --- a/dbt/adapters/spark/__version__.py +++ b/dbt/adapters/spark/__version__.py @@ -1 +1 @@ -version = "1.8.0b1" +version = "1.8.0b2" diff --git a/setup.py b/setup.py index 325d31ccd..55112e3f2 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def _get_plugin_version_dict(): package_name = "dbt-spark" -package_version = "1.8.0b1" +package_version = "1.8.0b2" description = """The Apache Spark adapter plugin for dbt""" odbc_extras = ["pyodbc~=4.0.39"]