diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 75d4ab8d5..ae3930dc4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.6 +current_version = 1.6.7 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.7.md b/.changes/1.6.7.md new file mode 100644 index 000000000..e4f64774a --- /dev/null +++ b/.changes/1.6.7.md @@ -0,0 +1,5 @@ +## dbt-redshift 1.6.7 - February 09, 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 44381684e..34e53178d 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.6.7 - February 09, 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.6.6 - February 01, 2024 ### Fixes @@ -14,7 +22,6 @@ ### Contributors - [@reptillicus](https://github.com/reptillicus) ([#641](https://github.com/dbt-labs/dbt-redshift/issues/641)) - ## dbt-redshift 1.6.5 - December 07, 2023 ### Dependencies diff --git a/dbt/adapters/redshift/__version__.py b/dbt/adapters/redshift/__version__.py index 267d3275c..26a0a0131 100644 --- a/dbt/adapters/redshift/__version__.py +++ b/dbt/adapters/redshift/__version__.py @@ -1 +1 @@ -version = "1.6.6" +version = "1.6.7"