diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bae25569d..8351d7c6d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.2 +current_version = 1.4.3 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.4.3.md b/.changes/1.4.3.md new file mode 100644 index 000000000..586a6be17 --- /dev/null +++ b/.changes/1.4.3.md @@ -0,0 +1 @@ +## dbt-spark 1.4.3 - August 04, 2023 diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e528162d..9f75d2caa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ - "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.4.3 - August 04, 2023 + + + ## dbt-spark 1.4.2 - May 26, 2023 ### Fixes @@ -14,7 +18,6 @@ ### Contributors - [@mikealfare](https://github.com/mikealfare) ([#725](https://github.com/dbt-labs/dbt-spark/issues/725)) - ## dbt-spark 1.4.1 - January 27, 2023 ### Dependencies - Allow thrift 0.16.0 ([#606](https://github.com/dbt-labs/dbt-spark/issues/606), [#605](https://github.com/dbt-labs/dbt-spark/pull/605)) diff --git a/dbt/adapters/spark/__version__.py b/dbt/adapters/spark/__version__.py index 841aad2c6..8fb4690e7 100644 --- a/dbt/adapters/spark/__version__.py +++ b/dbt/adapters/spark/__version__.py @@ -1 +1 @@ -version = "1.4.2" +version = "1.4.3" diff --git a/setup.py b/setup.py index e014913e0..4e2d3a8a6 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ def _get_dbt_core_version(): package_name = "dbt-spark" -package_version = "1.4.2" +package_version = "1.4.3" dbt_core_version = _get_dbt_core_version() description = """The Apache Spark adapter plugin for dbt"""