diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9f5762ee0..f3e9ac1da 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.3 +current_version = 1.6.4 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.4.md b/.changes/1.6.4.md new file mode 100644 index 000000000..0d06041a6 --- /dev/null +++ b/.changes/1.6.4.md @@ -0,0 +1,5 @@ +## dbt-snowflake 1.6.4 - 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 9d64a7bec..d6b684aee 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.6.4 - 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.6.3 - September 25, 2023 ### Features @@ -20,7 +28,6 @@ - [@jaypeedevlin](https://github.com/jaypeedevlin) ([#772](https://github.com/dbt-labs/dbt-snowflake/issues/772)) - [@kaarthik108](https://github.com/kaarthik108) ([#769](https://github.com/dbt-labs/dbt-snowflake/issues/769)) - ## dbt-snowflake 1.6.2 - August 30, 2023 ### Fixes diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index 33a97d944..cd70cb070 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.6.3" +version = "1.6.4" diff --git a/setup.py b/setup.py index ebb9a3739..921ae4174 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.6.3" +package_version = "1.6.4" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""