diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 52711f81d..0753cfcbf 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.10 +current_version = 1.5.11 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.11.md b/.changes/1.5.11.md new file mode 100644 index 000000000..4e24a6cb6 --- /dev/null +++ b/.changes/1.5.11.md @@ -0,0 +1,5 @@ +## dbt-redshift 1.5.11 - September 28, 2023 + +### 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/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 45621d073..ba350540b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,16 @@ - "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.10 - August 21, 2023 +## dbt-redshift 1.5.11 - September 28, 2023 + +### Under the Hood +- Add tests for inlined limit + sql_header in dbt show query ([#616](https://github.com/dbt-labs/dbt-redshift/issues/616)) + +## dbt-redshift 1.5.10 - August 21, 2023 + ## dbt-redshift 1.5.9 - July 31, 2023 ### Fixes diff --git a/dbt/adapters/redshift/__version__.py b/dbt/adapters/redshift/__version__.py index f6dc04ed5..bb8035558 100644 --- a/dbt/adapters/redshift/__version__.py +++ b/dbt/adapters/redshift/__version__.py @@ -1 +1 @@ -version = "1.5.10" +version = "1.5.11"