diff --git a/.changes/1.3.1.md b/.changes/1.3.1.md new file mode 100644 index 00000000..e2dd6ebd --- /dev/null +++ b/.changes/1.3.1.md @@ -0,0 +1,6 @@ +## dbt-trino 1.3.1 - November 04, 2022 +### Fixes +- Fix table not dropped on `full-refresh` of incremental models ([#168](https://github.com/starburstdata/dbt-trino/pull/168)) + +### Contributors +- [@mdesmet](https://github.com/mdesmet) ([#168](https://github.com/starburstdata/dbt-trino/pull/168)) diff --git a/.changes/unreleased/Fixes-20221025-165844.yaml b/.changes/1.3.1/Fixes-20221025-165844.yaml similarity index 100% rename from .changes/unreleased/Fixes-20221025-165844.yaml rename to .changes/1.3.1/Fixes-20221025-165844.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d183c65..e8ecc229 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.3.1 - November 04, 2022 +### Fixes +- Fix table not dropped on `full-refresh` of incremental models ([#168](https://github.com/starburstdata/dbt-trino/pull/168)) + +### Contributors +- [@mdesmet](https://github.com/mdesmet) ([#168](https://github.com/starburstdata/dbt-trino/pull/168)) ## dbt-trino 1.3.0 - October 21, 2022 ### Breaking Changes - By default incremental materializations will use views if all incremental operations can be applied atomically, please set `+views_enabled` to `false` in your incremental model if your connector doesn't support view creation to use a table instead. ([#160](https://github.com/starburstdata/dbt-trino/pull/160)) diff --git a/dbt/adapters/trino/__version__.py b/dbt/adapters/trino/__version__.py index d28b3ddc..35ec9a37 100644 --- a/dbt/adapters/trino/__version__.py +++ b/dbt/adapters/trino/__version__.py @@ -1 +1 @@ -version = "1.3.0" +version = "1.3.1"