diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d7b766617..cdcb4998d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.1 +current_version = 1.5.2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.2.md b/.changes/1.5.2.md new file mode 100644 index 000000000..2a0bcb100 --- /dev/null +++ b/.changes/1.5.2.md @@ -0,0 +1,13 @@ +## dbt-snowflake 1.5.2 - June 22, 2023 + +### Fixes + +- fix redaction of row values in logs and standard out ([#589](https://github.com/dbt-labs/dbt-snowflake/issues/589)) + +### Under the Hood + +- test foreign key + unique constraint rendering ([#7417](https://github.com/dbt-labs/dbt-snowflake/issues/7417)) +- remove support for python 3.7 ([#638](https://github.com/dbt-labs/dbt-snowflake/issues/638)) + +### Contributors +- [@schielke](https://github.com/schielke) ([#589](https://github.com/dbt-labs/dbt-snowflake/issues/589)) diff --git a/.changes/unreleased/Fixes-20230508-224927.yaml b/.changes/unreleased/Fixes-20230508-224927.yaml deleted file mode 100644 index 4b6e6850f..000000000 --- a/.changes/unreleased/Fixes-20230508-224927.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: fix redaction of row values in logs and standard out -time: 2023-05-08T22:49:27.960837+02:00 -custom: - Author: schielke - Issue: "589" diff --git a/.changes/unreleased/Under the Hood-20230511-144429.yaml b/.changes/unreleased/Under the Hood-20230511-144429.yaml deleted file mode 100644 index 60e394688..000000000 --- a/.changes/unreleased/Under the Hood-20230511-144429.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: test foreign key + unique constraint rendering -time: 2023-05-11T14:44:29.374015-04:00 -custom: - Author: michelleark - Issue: "7417" 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 f344f6c4b..be6bc9d49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,26 @@ - "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.1 - May 26, 2023 +## dbt-snowflake 1.5.2 - June 22, 2023 ### Fixes -- Address some issues regarding gustom schema overrides. ([#393](https://github.com/dbt-labs/dbt-snowflake/issues/393)) +- fix redaction of row values in logs and standard out ([#589](https://github.com/dbt-labs/dbt-snowflake/issues/589)) + +### Under the Hood + +- test foreign key + unique constraint rendering ([#7417](https://github.com/dbt-labs/dbt-snowflake/issues/7417)) +- remove support for python 3.7 ([#638](https://github.com/dbt-labs/dbt-snowflake/issues/638)) + +### Contributors +- [@schielke](https://github.com/schielke) ([#589](https://github.com/dbt-labs/dbt-snowflake/issues/589)) + + +## dbt-snowflake 1.5.1 - May 26, 2023 +### Fixes +- Address some issues regarding gustom schema overrides. ([#393](https://github.com/dbt-labs/dbt-snowflake/issues/393)) ## dbt-snowflake 1.5.0 - April 27, 2023 diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index 0c46db4fa..10cd127f5 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.5.1" +version = "1.5.2" diff --git a/setup.py b/setup.py index e805a878d..7ee279a71 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.5.1" +package_version = "1.5.2" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""