From 1db73fc45d37d36ecf5d316b1ad1998c78b1e2d9 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Fri, 4 Aug 2023 16:54:46 +0000 Subject: [PATCH] Bumping version to 1.4.4 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.4.4.md | 5 +++++ .changes/unreleased/Under the Hood-20230530-161341.yaml | 6 ------ CHANGELOG.md | 8 ++++++++ dbt/adapters/snowflake/__version__.py | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 9 deletions(-) create mode 100644 .changes/1.4.4.md delete mode 100644 .changes/unreleased/Under the Hood-20230530-161341.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8a190fed1..e46830281 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.3 +current_version = 1.4.4 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.4.4.md b/.changes/1.4.4.md new file mode 100644 index 000000000..6e6edc654 --- /dev/null +++ b/.changes/1.4.4.md @@ -0,0 +1,5 @@ +## dbt-snowflake 1.4.4 - August 04, 2023 + +### Under the Hood + +- remove support for python 3.7 ([#638](https://github.com/dbt-labs/dbt-snowflake/issues/638)) diff --git a/.changes/unreleased/Under the Hood-20230530-161341.yaml b/.changes/unreleased/Under the Hood-20230530-161341.yaml deleted file mode 100644 index 31acaf121..000000000 --- a/.changes/unreleased/Under the Hood-20230530-161341.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: remove support for python 3.7 -time: 2023-05-30T16:13:41.217839-05:00 -custom: - Author: McKnight-42 - Issue: "638" diff --git a/CHANGELOG.md b/CHANGELOG.md index f854ae950..3f0d5f22a 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.4.4 - August 04, 2023 + +### Under the Hood + +- remove support for python 3.7 ([#638](https://github.com/dbt-labs/dbt-snowflake/issues/638)) + + + ## dbt-snowflake 1.4.3 - May 31, 2023 ### Fixes diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index 8fb4690e7..98da246a2 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.4.3" +version = "1.4.4" diff --git a/setup.py b/setup.py index aaed64d5a..b09bd1a37 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.4.3" +package_version = "1.4.4" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""