diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4c6857c36..ec3e7b2f6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.5 +current_version = 1.7.6 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.6.md b/.changes/1.7.6.md new file mode 100644 index 000000000..9ea89b395 --- /dev/null +++ b/.changes/1.7.6.md @@ -0,0 +1,5 @@ +## 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)) diff --git a/.changes/unreleased/Fixes-20240317-113447.yaml b/.changes/unreleased/Fixes-20240317-113447.yaml deleted file mode 100644 index 4338fc95b..000000000 --- a/.changes/unreleased/Fixes-20240317-113447.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Pin `redshift-connector` to <2.0.918 to avoid SSL error introduced in 2.0.918 -time: 2024-03-17T11:34:47.873169-04:00 -custom: - Author: mikealfare - Issue: "730" diff --git a/CHANGELOG.md b/CHANGELOG.md index 862c28888..94d496cf4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,20 @@ - "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 + +### 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 - Add unit test for transaction semantics. ([#722](https://github.com/dbt-labs/dbt-redshift/issues/722)) - - ## dbt-redshift 1.7.4 - February 29, 2024 ### Features diff --git a/dbt/adapters/redshift/__version__.py b/dbt/adapters/redshift/__version__.py index 57a819f4f..72f4cc284 100644 --- a/dbt/adapters/redshift/__version__.py +++ b/dbt/adapters/redshift/__version__.py @@ -1 +1 @@ -version = "1.7.5" +version = "1.7.6"