diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a8c70bded..b14117ac0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.2 +current_version = 1.5.3 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.3.md b/.changes/1.5.3.md new file mode 100644 index 000000000..18cff924f --- /dev/null +++ b/.changes/1.5.3.md @@ -0,0 +1,5 @@ +## dbt-redshift 1.5.3 - June 02, 2023 + +### Fixes + +- Get autocommit on by default to restore old semantics users had relied on prior to 1.5. Add tests. ([#425](https://github.com/dbt-labs/dbt-redshift/issues/425)) diff --git a/.changes/unreleased/Fixes-20230531-153347.yaml b/.changes/unreleased/Fixes-20230531-153347.yaml deleted file mode 100644 index 4c4d324ad..000000000 --- a/.changes/unreleased/Fixes-20230531-153347.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: Get autocommit on by default to restore old semantics users had relied on prior - to 1.5. Add tests. -time: 2023-05-31T15:33:47.180508-07:00 -custom: - Author: versusfacit - Issue: "425" diff --git a/CHANGELOG.md b/CHANGELOG.md index 296b39c16..9df786c1b 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-redshift/blob/main/CONTRIBUTING.md#adding-changelog-entry) +## dbt-redshift 1.5.3 - June 02, 2023 + +### Fixes + +- Get autocommit on by default to restore old semantics users had relied on prior to 1.5. Add tests. ([#425](https://github.com/dbt-labs/dbt-redshift/issues/425)) + + + ## dbt-redshift 1.5.2 - May 26, 2023 ### Fixes @@ -17,7 +25,6 @@ ### Contributors - [@jiezhen-chen](https://github.com/jiezhen-chen) ([#427](https://github.com/dbt-labs/dbt-redshift/issues/427)) - ## dbt-redshift 1.5.1 - May 03, 2023 ### Fixes diff --git a/dbt/adapters/redshift/__version__.py b/dbt/adapters/redshift/__version__.py index 10cd127f5..2c924dd41 100644 --- a/dbt/adapters/redshift/__version__.py +++ b/dbt/adapters/redshift/__version__.py @@ -1 +1 @@ -version = "1.5.2" +version = "1.5.3"