From b9249ee66a923e5d1d3ee17c88df9c45787f18dd Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Mon, 6 May 2024 21:47:18 +0000 Subject: [PATCH] [create-pull-request] automated change --- .bumpversion.cfg | 2 +- .changes/1.8.0-rc1.md | 10 ++++++++++ .../Dependencies-20240419-024912.yaml | 0 .../Dependencies-20240419-024916.yaml | 0 .../Under the Hood-20240410-183535.yaml | 0 CHANGELOG.md | 15 +++++++++++++-- dbt/adapters/spark/__version__.py | 2 +- setup.py | 2 +- 8 files changed, 26 insertions(+), 5 deletions(-) create mode 100644 .changes/1.8.0-rc1.md rename .changes/{unreleased => 1.8.0}/Dependencies-20240419-024912.yaml (100%) rename .changes/{unreleased => 1.8.0}/Dependencies-20240419-024916.yaml (100%) rename .changes/{unreleased => 1.8.0}/Under the Hood-20240410-183535.yaml (100%) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index aa22c8214..b29061e6d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.8.0b2 +current_version = 1.8.0rc1 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.8.0-rc1.md b/.changes/1.8.0-rc1.md new file mode 100644 index 000000000..02455a03e --- /dev/null +++ b/.changes/1.8.0-rc1.md @@ -0,0 +1,10 @@ +## dbt-spark 1.8.0-rc1 - May 06, 2024 + +### Under the Hood + +- Update dependabot config to cover GHA and Docker ([#1006](https://github.com/dbt-labs/dbt-spark/issues/1006)) + +### Dependencies + +- Bump actions/setup-python from 4 to 5 ([#1013](https://github.com/dbt-labs/dbt-spark/pull/1013)) +- Bump actions/checkout from 3 to 4 ([#1014](https://github.com/dbt-labs/dbt-spark/pull/1014)) diff --git a/.changes/unreleased/Dependencies-20240419-024912.yaml b/.changes/1.8.0/Dependencies-20240419-024912.yaml similarity index 100% rename from .changes/unreleased/Dependencies-20240419-024912.yaml rename to .changes/1.8.0/Dependencies-20240419-024912.yaml diff --git a/.changes/unreleased/Dependencies-20240419-024916.yaml b/.changes/1.8.0/Dependencies-20240419-024916.yaml similarity index 100% rename from .changes/unreleased/Dependencies-20240419-024916.yaml rename to .changes/1.8.0/Dependencies-20240419-024916.yaml diff --git a/.changes/unreleased/Under the Hood-20240410-183535.yaml b/.changes/1.8.0/Under the Hood-20240410-183535.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20240410-183535.yaml rename to .changes/1.8.0/Under the Hood-20240410-183535.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 81f0575dd..b57048efc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ - "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-rc1 - May 06, 2024 + +### Under the Hood + +- Update dependabot config to cover GHA and Docker ([#1006](https://github.com/dbt-labs/dbt-spark/issues/1006)) + +### Dependencies + +- Bump actions/setup-python from 4 to 5 ([#1013](https://github.com/dbt-labs/dbt-spark/pull/1013)) +- Bump actions/checkout from 3 to 4 ([#1014](https://github.com/dbt-labs/dbt-spark/pull/1014)) + + + ## dbt-spark 1.8.0-b2 - April 03, 2024 ### Features @@ -19,8 +32,6 @@ - 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 diff --git a/dbt/adapters/spark/__version__.py b/dbt/adapters/spark/__version__.py index 7d16c28f0..037ac1faf 100644 --- a/dbt/adapters/spark/__version__.py +++ b/dbt/adapters/spark/__version__.py @@ -1 +1 @@ -version = "1.8.0b2" +version = "1.8.0rc1" diff --git a/setup.py b/setup.py index 55112e3f2..f66f9856b 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def _get_plugin_version_dict(): package_name = "dbt-spark" -package_version = "1.8.0b2" +package_version = "1.8.0rc1" description = """The Apache Spark adapter plugin for dbt""" odbc_extras = ["pyodbc~=4.0.39"]