diff --git a/.changes/1.8.1.md b/.changes/1.8.1.md new file mode 100644 index 00000000..1d68d465 --- /dev/null +++ b/.changes/1.8.1.md @@ -0,0 +1,6 @@ +## dbt-trino 1.8.1 - July 04, 2024 +### Fixes +- Fix incremental materialization to correctly set the temporary relation to a view or table ([#416](https://github.com/starburstdata/dbt-trino/issues/416), [#418](https://github.com/starburstdata/dbt-trino/pull/418)) + +### Contributors +- [@damian3031](https://github.com/damian3031) ([#418](https://github.com/starburstdata/dbt-trino/pull/418)) diff --git a/.changes/unreleased/Fixes-20240703-140732.yaml b/.changes/1.8.1/Fixes-20240703-140732.yaml similarity index 100% rename from .changes/unreleased/Fixes-20240703-140732.yaml rename to .changes/1.8.1/Fixes-20240703-140732.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 469a45c4..df0ad0d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ - 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.1 - July 04, 2024 +### Fixes +- Fix incremental materialization to correctly set the temporary relation to a view or table ([#416](https://github.com/starburstdata/dbt-trino/issues/416), [#418](https://github.com/starburstdata/dbt-trino/pull/418)) + +### Contributors +- [@damian3031](https://github.com/damian3031) ([#418](https://github.com/starburstdata/dbt-trino/pull/418)) ## dbt-trino 1.8.0 - May 09, 2024 ### Features - Support all types for unit testing ([#391](https://github.com/starburstdata/dbt-trino/issues/391), [#393](https://github.com/starburstdata/dbt-trino/pull/393)) diff --git a/dbt/adapters/trino/__version__.py b/dbt/adapters/trino/__version__.py index 6aaa73b8..72126ce1 100644 --- a/dbt/adapters/trino/__version__.py +++ b/dbt/adapters/trino/__version__.py @@ -1 +1 @@ -version = "1.8.0" +version = "1.8.1"