From aff871aa77cae97cfb97b2389f0388d71a3878f0 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 8 Feb 2024 23:41:32 +0000 Subject: [PATCH] Bumping version to 1.5.12 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.5.12.md | 5 +++++ .changes/unreleased/Fixes-20240206-132326.yaml | 7 ------- CHANGELOG.md | 10 ++++++++-- dbt/adapters/redshift/__version__.py | 2 +- 5 files changed, 15 insertions(+), 11 deletions(-) create mode 100644 .changes/1.5.12.md delete mode 100644 .changes/unreleased/Fixes-20240206-132326.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0753cfcbf..3981ad31a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.11 +current_version = 1.5.12 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.12.md b/.changes/1.5.12.md new file mode 100644 index 000000000..f2644ab23 --- /dev/null +++ b/.changes/1.5.12.md @@ -0,0 +1,5 @@ +## dbt-redshift 1.5.12 - February 08, 2024 + +### Fixes + +- Initialize sqlparse.Lexer to resolve issue with `dbt docs generate` that includes external tables ([#710](https://github.com/dbt-labs/dbt-redshift/issues/710)) diff --git a/.changes/unreleased/Fixes-20240206-132326.yaml b/.changes/unreleased/Fixes-20240206-132326.yaml deleted file mode 100644 index 45b3a74c8..000000000 --- a/.changes/unreleased/Fixes-20240206-132326.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: Initialize sqlparse.Lexer to resolve issue with `dbt docs generate` that includes - external tables -time: 2024-02-06T13:23:26.061133-05:00 -custom: - Author: mikealfare - Issue: "710" diff --git a/CHANGELOG.md b/CHANGELOG.md index ba350540b..87310fcd2 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.5.12 - February 08, 2024 + +### Fixes + +- Initialize sqlparse.Lexer to resolve issue with `dbt docs generate` that includes external tables ([#710](https://github.com/dbt-labs/dbt-redshift/issues/710)) + + + ## 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 diff --git a/dbt/adapters/redshift/__version__.py b/dbt/adapters/redshift/__version__.py index bb8035558..ca08fcb0e 100644 --- a/dbt/adapters/redshift/__version__.py +++ b/dbt/adapters/redshift/__version__.py @@ -1 +1 @@ -version = "1.5.11" +version = "1.5.12"