From 06041cdc26ef025be65cacf34a55b1b0d7913b53 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 28 Sep 2023 22:52:40 +0000 Subject: [PATCH] Bumping version to 1.5.5 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.5.5.md | 5 +++++ .changes/unreleased/Under the Hood-20230925-144814.yaml | 6 ------ CHANGELOG.md | 9 ++++++++- dbt/adapters/snowflake/__version__.py | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 10 deletions(-) create mode 100644 .changes/1.5.5.md delete mode 100644 .changes/unreleased/Under the Hood-20230925-144814.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3cb12efd1..34875f150 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.4 +current_version = 1.5.5 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.5.md b/.changes/1.5.5.md new file mode 100644 index 000000000..fdcfea9db --- /dev/null +++ b/.changes/1.5.5.md @@ -0,0 +1,5 @@ +## dbt-snowflake 1.5.5 - September 28, 2023 + +### Under the Hood + +- Add tests for inlined limit + sql_header in dbt show query ([#786](https://github.com/dbt-labs/dbt-snowflake/issues/786)) diff --git a/.changes/unreleased/Under the Hood-20230925-144814.yaml b/.changes/unreleased/Under the Hood-20230925-144814.yaml deleted file mode 100644 index df7e17255..000000000 --- a/.changes/unreleased/Under the Hood-20230925-144814.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Add tests for inlined limit + sql_header in dbt show query -time: 2023-09-25T14:48:14.663178+01:00 -custom: - Author: michelleark - Issue: "786" diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e56619bd..1a70fb74f 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.5.5 - September 28, 2023 + +### Under the Hood + +- Add tests for inlined limit + sql_header in dbt show query ([#786](https://github.com/dbt-labs/dbt-snowflake/issues/786)) + + + ## dbt-snowflake 1.5.4 - September 25, 2023 ### Features @@ -14,7 +22,6 @@ ### Contributors - [@jaypeedevlin](https://github.com/jaypeedevlin) ([#772](https://github.com/dbt-labs/dbt-snowflake/issues/772)) - ## dbt-snowflake 1.5.3 - August 21, 2023 ## dbt-snowflake 1.5.2 - June 22, 2023 diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index 25985dd86..7f07abf9a 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.5.4" +version = "1.5.5" diff --git a/setup.py b/setup.py index a1caed699..943702819 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.5.4" +package_version = "1.5.5" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""