diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6782266bb..be40e7375 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.1 +current_version = 1.7.2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.2.md b/.changes/1.7.2.md new file mode 100644 index 000000000..458c3679d --- /dev/null +++ b/.changes/1.7.2.md @@ -0,0 +1,5 @@ +## dbt-snowflake 1.7.2 - February 16, 2024 + +### Fixes + +- remove `token` field from connection keys ([#906](https://github.com/dbt-labs/dbt-snowflake/issues/906)) diff --git a/.changes/unreleased/Fixes-20240216-125014.yaml b/.changes/unreleased/Fixes-20240216-125014.yaml deleted file mode 100644 index b2d4ea163..000000000 --- a/.changes/unreleased/Fixes-20240216-125014.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: remove `token` field from connection keys -time: 2024-02-16T12:50:14.459161-08:00 -custom: - Author: colin-rogers-dbt - Issue: "906" diff --git a/CHANGELOG.md b/CHANGELOG.md index 914b39adf..bea51127f 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.2 - February 16, 2024 + +### Fixes + +- remove `token` field from connection keys ([#906](https://github.com/dbt-labs/dbt-snowflake/issues/906)) + + + ## dbt-snowflake 1.7.1 - December 08, 2023 ### Security - DDOS vulnerability in 41.0.5. Uptick to avoid ([#852](https://github.com/dbt-labs/dbt-snowflake/pull/852)) - - ## dbt-snowflake 1.7.0 - November 02, 2023 ### Features diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index 116d56678..2196826f8 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.7.1" +version = "1.7.2" diff --git a/setup.py b/setup.py index 1e1bd8bcf..caed41f1a 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.7.1" +package_version = "1.7.2" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""