diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 12a212cd5..06a93efb0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.7 +current_version = 1.5.8 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.8.md b/.changes/1.5.8.md new file mode 100644 index 000000000..5066ec08f --- /dev/null +++ b/.changes/1.5.8.md @@ -0,0 +1,9 @@ +## dbt-redshift 1.5.8 - July 13, 2023 + +### Fixes + +- cast the port as an int ([#518](https://github.com/dbt-labs/dbt-redshift/issues/518)) +- hard pin dep on redshift_connector ([#531](https://github.com/dbt-labs/dbt-redshift/issues/531), [#532](https://github.com/dbt-labs/dbt-redshift/issues/532)) + +### Contributors +- [@jiezhen-chen](https://github.com/jiezhen-chen) ([#518](https://github.com/dbt-labs/dbt-redshift/issues/518)) diff --git a/.changes/unreleased/Fixes-20230706-123329.yaml b/.changes/unreleased/Fixes-20230706-123329.yaml deleted file mode 100644 index afda869d0..000000000 --- a/.changes/unreleased/Fixes-20230706-123329.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: cast the port as an int -time: 2023-07-06T12:33:29.799921-07:00 -custom: - Author: jiezhen-chen - Issue: "518" diff --git a/.changes/unreleased/Fixes-20230713-105351.yaml b/.changes/unreleased/Fixes-20230713-105351.yaml deleted file mode 100644 index 47193a357..000000000 --- a/.changes/unreleased/Fixes-20230713-105351.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: hard pin dep on redshift_connector -time: 2023-07-13T10:53:51.463072-04:00 -custom: - Author: dataders - Issue: 531 532 diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ccd678a7..6b298857e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,23 @@ - "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.5.7 - July 06, 2023 +## dbt-redshift 1.5.8 - July 13, 2023 ### Fixes -- Fix regression in redshift-connector==2.0.912 ([#518](https://github.com/dbt-labs/dbt-redshift/issues/518)) +- cast the port as an int ([#518](https://github.com/dbt-labs/dbt-redshift/issues/518)) +- hard pin dep on redshift_connector ([#531](https://github.com/dbt-labs/dbt-redshift/issues/531), [#532](https://github.com/dbt-labs/dbt-redshift/issues/532)) +### Contributors +- [@jiezhen-chen](https://github.com/jiezhen-chen) ([#518](https://github.com/dbt-labs/dbt-redshift/issues/518)) +## dbt-redshift 1.5.7 - July 06, 2023 + +### Fixes + +- Fix regression in redshift-connector==2.0.912 ([#518](https://github.com/dbt-labs/dbt-redshift/issues/518)) + ## dbt-redshift 1.5.6 - June 22, 2023 ### Breaking Changes diff --git a/dbt/adapters/redshift/__version__.py b/dbt/adapters/redshift/__version__.py index 7d7c707ff..f509e4b0d 100644 --- a/dbt/adapters/redshift/__version__.py +++ b/dbt/adapters/redshift/__version__.py @@ -1 +1 @@ -version = "1.5.7" +version = "1.5.8"