diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 29bff069a..e91a92012 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.1 +current_version = 1.6.2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.2.md b/.changes/1.6.2.md new file mode 100644 index 000000000..67c8f9804 --- /dev/null +++ b/.changes/1.6.2.md @@ -0,0 +1,9 @@ +## dbt-redshift 1.6.2 - September 28, 2023 + +### Fixes + +- changes expected value types to AnyInteger to take into account changes in core ([#597](https://github.com/dbt-labs/dbt-redshift/issues/597)) + +### Under the Hood + +- Add tests for inlined limit + sql_header in dbt show query ([#616](https://github.com/dbt-labs/dbt-redshift/issues/616)) diff --git a/.changes/unreleased/Fixes-20230908-113019.yaml b/.changes/unreleased/Fixes-20230908-113019.yaml deleted file mode 100644 index ed5957317..000000000 --- a/.changes/unreleased/Fixes-20230908-113019.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: changes expected value types to AnyInteger to take into account changes in core -time: 2023-09-08T11:30:19.77143-05:00 -custom: - Author: McKnight-42 - Issue: "597" diff --git a/.changes/unreleased/Under the Hood-20230925-150132.yaml b/.changes/unreleased/Under the Hood-20230925-150132.yaml deleted file mode 100644 index c61a28d56..000000000 --- a/.changes/unreleased/Under the Hood-20230925-150132.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Add tests for inlined limit + sql_header in dbt show query -time: 2023-09-25T15:01:32.025325+01:00 -custom: - Author: michelleark - Issue: "616" diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b263bba0..c240a955a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +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.6.1 - August 21, 2023 +## dbt-redshift 1.6.2 - September 28, 2023 + +### Fixes + +- changes expected value types to AnyInteger to take into account changes in core ([#597](https://github.com/dbt-labs/dbt-redshift/issues/597)) ### Under the Hood -- Update flaky MV tests to use retry logic to avoid "cannot open relation with OID" error ([#569](https://github.com/dbt-labs/dbt-redshift/issues/569)) +- Add tests for inlined limit + sql_header in dbt show query ([#616](https://github.com/dbt-labs/dbt-redshift/issues/616)) + +## dbt-redshift 1.6.1 - August 21, 2023 + +### Under the Hood + +- Update flaky MV tests to use retry logic to avoid "cannot open relation with OID" error ([#569](https://github.com/dbt-labs/dbt-redshift/issues/569)) ## dbt-redshift 1.6.0 - July 31, 2023 diff --git a/dbt/adapters/redshift/__version__.py b/dbt/adapters/redshift/__version__.py index cead7e895..a9851426d 100644 --- a/dbt/adapters/redshift/__version__.py +++ b/dbt/adapters/redshift/__version__.py @@ -1 +1 @@ -version = "1.6.1" +version = "1.6.2"