diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b84f5c4a3..ade0db84f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.4 +current_version = 1.7.5 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.5.md b/.changes/1.7.5.md new file mode 100644 index 000000000..6076cc0c1 --- /dev/null +++ b/.changes/1.7.5.md @@ -0,0 +1,5 @@ +## dbt-snowflake 1.7.5 - May 22, 2024 + +### Fixes + +- Update relation caching to correctly identify dynamic tables, accounting for Snowflake's `2024_03` bundle ([#1016](https://github.com/dbt-labs/dbt-snowflake/issues/1016)) diff --git a/.changes/unreleased/Fixes-20240516-174337.yaml b/.changes/unreleased/Fixes-20240516-174337.yaml deleted file mode 100644 index 955d90ed3..000000000 --- a/.changes/unreleased/Fixes-20240516-174337.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Update relation caching to correctly identify dynamic tables, accounting for Snowflake's `2024_03` bundle -time: 2024-05-16T17:43:37.336858-04:00 -custom: - Author: mikealfare - Issue: "1016" diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b8a40af7..861c55c88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,20 @@ - "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-snowflake/blob/main/CONTRIBUTING.md#adding-changelog-entry) +## dbt-snowflake 1.7.5 - May 22, 2024 + +### Fixes + +- Update relation caching to correctly identify dynamic tables, accounting for Snowflake's `2024_03` bundle ([#1016](https://github.com/dbt-labs/dbt-snowflake/issues/1016)) + + + ## dbt-snowflake 1.7.4 - May 15, 2024 ### Under the Hood - Speedup catalog string comparison by using ilike before equals ([#1035](https://github.com/dbt-labs/dbt-snowflake/issues/1035)) - - ## dbt-snowflake 1.7.3 - March 28, 2024 ### Fixes diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index 582554e87..57a819f4f 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.7.4" +version = "1.7.5" diff --git a/setup.py b/setup.py index 3c01824ed..791bbd629 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.7.4" +package_version = "1.7.5" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""