diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fd58e9ac1..f4b6c6064 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.2 +current_version = 1.5.3 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.3.md b/.changes/1.5.3.md new file mode 100644 index 000000000..135946c17 --- /dev/null +++ b/.changes/1.5.3.md @@ -0,0 +1,12 @@ +## dbt-spark 1.5.3 - December 13, 2023 + +### Features + +- Persist Column level comments when creating views ([#372](https://github.com/dbt-labs/dbt-spark/issues/372)) + +### Dependencies + +- Replace sasl with pure-sasl for PyHive ([#818](https://github.com/dbt-labs/dbt-spark/pull/818)) + +### Contributors +- [@jurasan](https://github.com/jurasan) ([#372](https://github.com/dbt-labs/dbt-spark/issues/372)) 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/.changes/unreleased/Features-20230817-130731.yaml b/.changes/unreleased/Features-20230817-130731.yaml deleted file mode 100644 index e88deb7bd..000000000 --- a/.changes/unreleased/Features-20230817-130731.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Persist Column level comments when creating views -time: 2023-08-17T13:07:31.6812862Z -custom: - Author: jurasan - Issue: 372 diff --git a/CHANGELOG.md b/CHANGELOG.md index 663dbc1de..b61d0cdab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +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.5.2 - August 04, 2023 +## dbt-spark 1.5.3 - December 13, 2023 + +### Features + +- Persist Column level comments when creating views ([#372](https://github.com/dbt-labs/dbt-spark/issues/372)) + +### Dependencies + +- Replace sasl with pure-sasl for PyHive ([#818](https://github.com/dbt-labs/dbt-spark/pull/818)) +### Contributors +- [@jurasan](https://github.com/jurasan) ([#372](https://github.com/dbt-labs/dbt-spark/issues/372)) +## dbt-spark 1.5.2 - August 04, 2023 + ## dbt-spark 1.5.1 - July 31, 2023 ### Features diff --git a/dbt/adapters/spark/__version__.py b/dbt/adapters/spark/__version__.py index 10cd127f5..2c924dd41 100644 --- a/dbt/adapters/spark/__version__.py +++ b/dbt/adapters/spark/__version__.py @@ -1 +1 @@ -version = "1.5.2" +version = "1.5.3" diff --git a/setup.py b/setup.py index 26a96847c..a6673f019 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ def _get_dbt_core_version(): package_name = "dbt-spark" -package_version = "1.5.2" +package_version = "1.5.3" dbt_core_version = _get_dbt_core_version() description = """The Apache Spark adapter plugin for dbt"""