diff --git a/.changes/1.8.0-b3.md b/.changes/1.8.0-b3.md new file mode 100644 index 00000000..661c5021 --- /dev/null +++ b/.changes/1.8.0-b3.md @@ -0,0 +1,6 @@ +## dbt-trino 1.8.0-b3 - April 22, 2024 +### Under the Hood +- Update dependabot config to cover GHA ([#395](https://github.com/starburstdata/dbt-trino/pull/395)) + +### Contributors +- [@damian3031](https://github.com/damian3031) ([#395](https://github.com/starburstdata/dbt-trino/pull/395)) diff --git a/.changes/unreleased/Under the Hood-20240422-125232.yaml b/.changes/1.8.0/Under the Hood-20240422-125232.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20240422-125232.yaml rename to .changes/1.8.0/Under the Hood-20240422-125232.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 77a51452..3b7c6228 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.0-b3 - April 22, 2024 +### Under the Hood +- Update dependabot config to cover GHA ([#395](https://github.com/starburstdata/dbt-trino/pull/395)) + +### Contributors +- [@damian3031](https://github.com/damian3031) ([#395](https://github.com/starburstdata/dbt-trino/pull/395)) ## dbt-trino 1.8.0-b2 - April 08, 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 7d16c28f..b0f82cbc 100644 --- a/dbt/adapters/trino/__version__.py +++ b/dbt/adapters/trino/__version__.py @@ -1 +1 @@ -version = "1.8.0b2" +version = "1.8.0b3" diff --git a/setup.py b/setup.py index e381f622..a5ee55d4 100644 --- a/setup.py +++ b/setup.py @@ -76,11 +76,11 @@ def _dbt_trino_version(): ] }, install_requires=[ - "dbt-common>=1.0.0,<2.0", - "dbt-adapters>=1.0.0,<2.0", + "dbt-common>=1.0.1,<2.0", + "dbt-adapters>=1.1.0rc1,<2.0", "trino~=0.326", # add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency - "dbt-core>=1.8.0b2", + "dbt-core>=1.8.0b3", ], zip_safe=False, classifiers=[