From 3071acc4388f46a0a2acd728466ea6a74528ae79 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Wed, 13 Dec 2023 21:28:44 +0000 Subject: [PATCH] [create-pull-request] automated change --- .bumpversion.cfg | 2 +- .changes/1.6.2.md | 5 +++++ .changes/unreleased/Dependencies-20230628-121341.yaml | 6 ------ CHANGELOG.md | 9 ++++++++- dbt/adapters/spark/__version__.py | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 10 deletions(-) create mode 100644 .changes/1.6.2.md delete mode 100644 .changes/unreleased/Dependencies-20230628-121341.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5cd655c3f..386e716d4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.1 +current_version = 1.6.2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.2.md b/.changes/1.6.2.md new file mode 100644 index 000000000..ff0d486df --- /dev/null +++ b/.changes/1.6.2.md @@ -0,0 +1,5 @@ +## dbt-spark 1.6.2 - December 13, 2023 + +### Dependencies + +- Replace sasl with pure-sasl for PyHive ([#818](https://github.com/dbt-labs/dbt-spark/pull/818)) diff --git a/.changes/unreleased/Dependencies-20230628-121341.yaml b/.changes/unreleased/Dependencies-20230628-121341.yaml deleted file mode 100644 index 5569c885d..000000000 --- a/.changes/unreleased/Dependencies-20230628-121341.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Dependencies -body: Replace sasl with pure-sasl for PyHive -time: 2023-06-28T12:13:41.141588-07:00 -custom: - Author: colin-rogers-dbt - PR: "818" diff --git a/CHANGELOG.md b/CHANGELOG.md index b4cfa32cc..5f00b2bea 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.2 - December 13, 2023 + +### Dependencies + +- Replace sasl with pure-sasl for PyHive ([#818](https://github.com/dbt-labs/dbt-spark/pull/818)) + + + ## dbt-spark 1.6.1 - November 09, 2023 ### Features @@ -18,7 +26,6 @@ ### Contributors - [@jurasan](https://github.com/jurasan) ([#372](https://github.com/dbt-labs/dbt-spark/issues/372)) - ## dbt-spark 1.6.0 - July 31, 2023 ### Features diff --git a/dbt/adapters/spark/__version__.py b/dbt/adapters/spark/__version__.py index cead7e895..a9851426d 100644 --- a/dbt/adapters/spark/__version__.py +++ b/dbt/adapters/spark/__version__.py @@ -1 +1 @@ -version = "1.6.1" +version = "1.6.2" diff --git a/setup.py b/setup.py index adc77e5e8..0b32f0861 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ def _get_dbt_core_version(): package_name = "dbt-spark" -package_version = "1.6.1" +package_version = "1.6.2" dbt_core_version = _get_dbt_core_version() description = """The Apache Spark adapter plugin for dbt"""