diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 890143bc5..db583e393 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.0 +current_version = 1.7.1 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.1.md b/.changes/1.7.1.md new file mode 100644 index 000000000..49644cccf --- /dev/null +++ b/.changes/1.7.1.md @@ -0,0 +1,5 @@ +## dbt-spark 1.7.1 - November 07, 2023 + +### Fixes + +- Support new agate Integer type and empty seed test ([#935](https://github.com/dbt-labs/dbt-spark/issues/935)) diff --git a/.changes/unreleased/Fixes-20231107-134141.yaml b/.changes/unreleased/Fixes-20231107-134141.yaml deleted file mode 100644 index d4f56eaca..000000000 --- a/.changes/unreleased/Fixes-20231107-134141.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Support new agate Integer type and empty seed test -time: 2023-11-07T13:41:41.033441-05:00 -custom: - Author: gshank - Issue: "935" diff --git a/CHANGELOG.md b/CHANGELOG.md index 34e05cefe..8e2307a30 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.7.1 - November 07, 2023 + +### Fixes + +- Support new agate Integer type and empty seed test ([#935](https://github.com/dbt-labs/dbt-spark/issues/935)) + + + ## dbt-spark 1.7.0 - November 02, 2023 ### Features @@ -70,7 +78,6 @@ - [@hanna-liashchuk](https://github.com/hanna-liashchuk) ([#387](https://github.com/dbt-labs/dbt-spark/issues/387)) - [@jurasan](https://github.com/jurasan) ([#372](https://github.com/dbt-labs/dbt-spark/issues/372)) - ## 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 a55413d15..116d56678 100644 --- a/dbt/adapters/spark/__version__.py +++ b/dbt/adapters/spark/__version__.py @@ -1 +1 @@ -version = "1.7.0" +version = "1.7.1" diff --git a/setup.py b/setup.py index e8cbdcb04..7247e7e50 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ def _get_dbt_core_version(): package_name = "dbt-spark" -package_version = "1.7.0" +package_version = "1.7.1" dbt_core_version = _get_dbt_core_version() description = """The Apache Spark adapter plugin for dbt"""