diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ec3e7b2f6..5d9ce2253 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.6 +current_version = 1.7.7 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.7.md b/.changes/1.7.7.md new file mode 100644 index 000000000..2bbaae5a0 --- /dev/null +++ b/.changes/1.7.7.md @@ -0,0 +1,8 @@ +## dbt-redshift 1.7.7 - April 18, 2024 + +### Fixes + +- dbt can cancel open queries upon interrupt ([#705](https://github.com/dbt-labs/dbt-redshift/issues/705)) + +### Contributors +- [@holly-evans](https://github.com/holly-evans) ([#705](https://github.com/dbt-labs/dbt-redshift/issues/705)) diff --git a/.changes/unreleased/Fixes-20240326-123703.yaml b/.changes/unreleased/Fixes-20240326-123703.yaml deleted file mode 100644 index 5d9bee694..000000000 --- a/.changes/unreleased/Fixes-20240326-123703.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: dbt can cancel open queries upon interrupt -time: 2024-03-26T12:37:03.17481-05:00 -custom: - Author: holly-evans - Issue: "705" diff --git a/CHANGELOG.md b/CHANGELOG.md index 94d496cf4..6ffaf5b42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,22 @@ - "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-redshift/blob/main/CONTRIBUTING.md#adding-changelog-entry) -## dbt-redshift 1.7.6 - April 16, 2024 +## dbt-redshift 1.7.7 - April 18, 2024 ### Fixes -- Pin `redshift-connector` to <2.0.918 to avoid SSL error introduced in 2.0.918 ([#730](https://github.com/dbt-labs/dbt-redshift/issues/730)) +- dbt can cancel open queries upon interrupt ([#705](https://github.com/dbt-labs/dbt-redshift/issues/705)) +### Contributors +- [@holly-evans](https://github.com/holly-evans) ([#705](https://github.com/dbt-labs/dbt-redshift/issues/705)) +## dbt-redshift 1.7.6 - April 16, 2024 + +### Fixes + +- Pin `redshift-connector` to <2.0.918 to avoid SSL error introduced in 2.0.918 ([#730](https://github.com/dbt-labs/dbt-redshift/issues/730)) + ## dbt-redshift 1.7.5 - March 28, 2024 ### Under the Hood diff --git a/dbt/adapters/redshift/__version__.py b/dbt/adapters/redshift/__version__.py index 72f4cc284..c3fcf0565 100644 --- a/dbt/adapters/redshift/__version__.py +++ b/dbt/adapters/redshift/__version__.py @@ -1 +1 @@ -version = "1.7.6" +version = "1.7.7"