From 085843c10def8956f0441c0e4629982c60dfb9d8 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Wed, 15 May 2024 16:04:31 +0000 Subject: [PATCH] Bumping version to 1.7.4 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.7.4.md | 5 +++++ .../unreleased/Under the Hood-20240425-144556.yaml | 6 ------ CHANGELOG.md | 10 ++++++++-- dbt/adapters/snowflake/__version__.py | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 11 deletions(-) create mode 100644 .changes/1.7.4.md delete mode 100644 .changes/unreleased/Under the Hood-20240425-144556.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2db1f992b..b84f5c4a3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.3 +current_version = 1.7.4 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.4.md b/.changes/1.7.4.md new file mode 100644 index 000000000..06d87ad0e --- /dev/null +++ b/.changes/1.7.4.md @@ -0,0 +1,5 @@ +## 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)) diff --git a/.changes/unreleased/Under the Hood-20240425-144556.yaml b/.changes/unreleased/Under the Hood-20240425-144556.yaml deleted file mode 100644 index 002da3c1f..000000000 --- a/.changes/unreleased/Under the Hood-20240425-144556.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Speedup catalog string comparison by using ilike before equals -time: 2024-04-25T14:45:56.549787+02:00 -custom: - Author: aranke - Issue: '1035' diff --git a/CHANGELOG.md b/CHANGELOG.md index d29350ae8..4b8a40af7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ - "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.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 @@ -21,8 +29,6 @@ - bump cryptography to 42.0.4 or higher for security callouts ([#940](https://github.com/dbt-labs/dbt-snowflake/pull/940)) - - ## dbt-snowflake 1.7.2 - February 16, 2024 ### Fixes diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index a26c30165..582554e87 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.7.3" +version = "1.7.4" diff --git a/setup.py b/setup.py index f0476c129..3c01824ed 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.7.3" +package_version = "1.7.4" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""