diff --git a/.changes/1.8.5.md b/.changes/1.8.5.md new file mode 100644 index 00000000..591da2c4 --- /dev/null +++ b/.changes/1.8.5.md @@ -0,0 +1,7 @@ +## dbt-trino 1.8.5 - December 10, 2024 +### Fixes +- Fix breaking compatibility with Python 3.8 ([#452](https://github.com/starburstdata/dbt-trino/pull/452)) +- Fix so that file_format and table_format config values do not require wrapping in single quotes ([#454](https://github.com/starburstdata/dbt-trino/issues/454), [#455](https://github.com/starburstdata/dbt-trino/pull/455)) + +### Contributors +- [@damian3031](https://github.com/damian3031) ([#452](https://github.com/starburstdata/dbt-trino/pull/452), [#455](https://github.com/starburstdata/dbt-trino/pull/455)) diff --git a/.changes/unreleased/Fixes-20241126-125237.yaml b/.changes/1.8.5/Fixes-20241126-125237.yaml similarity index 100% rename from .changes/unreleased/Fixes-20241126-125237.yaml rename to .changes/1.8.5/Fixes-20241126-125237.yaml diff --git a/.changes/unreleased/Fixes-20241206-132238.yaml b/.changes/1.8.5/Fixes-20241206-132238.yaml similarity index 100% rename from .changes/unreleased/Fixes-20241206-132238.yaml rename to .changes/1.8.5/Fixes-20241206-132238.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bf2b616..698875eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ - Changes are listed under the (pre)release in which they first appear. Subsequent releases include changes from previous releases. - "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/starburstdata/dbt-trino/blob/master/CONTRIBUTING.md#adding-changelog-entry) +## dbt-trino 1.8.5 - December 10, 2024 +### Fixes +- Fix breaking compatibility with Python 3.8 ([#452](https://github.com/starburstdata/dbt-trino/pull/452)) +- Fix so that file_format and table_format config values do not require wrapping in single quotes ([#454](https://github.com/starburstdata/dbt-trino/issues/454), [#455](https://github.com/starburstdata/dbt-trino/pull/455)) + +### Contributors +- [@damian3031](https://github.com/damian3031) ([#452](https://github.com/starburstdata/dbt-trino/pull/452), [#455](https://github.com/starburstdata/dbt-trino/pull/455)) ## dbt-trino 1.8.4 - November 22, 2024 ### Under the Hood - Revert cert default to False. Add require_certificate_validation Behavior Flag ([#447](https://github.com/starburstdata/dbt-trino/pull/447)) diff --git a/dbt/adapters/trino/__version__.py b/dbt/adapters/trino/__version__.py index f2493fc9..cb9f5164 100644 --- a/dbt/adapters/trino/__version__.py +++ b/dbt/adapters/trino/__version__.py @@ -1 +1 @@ -version = "1.8.4" +version = "1.8.5"