From 5ff9d9e72570c09e46e655b3cec17653b686a86c Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 20 Jun 2024 22:57:33 +0000 Subject: [PATCH] Bumping version to 1.8.1 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.8.1.md | 5 +++++ .changes/unreleased/Fixes-20240423-131503.yaml | 6 ------ CHANGELOG.md | 9 ++++++++- dbt/adapters/redshift/__version__.py | 2 +- 5 files changed, 15 insertions(+), 9 deletions(-) create mode 100644 .changes/1.8.1.md delete mode 100644 .changes/unreleased/Fixes-20240423-131503.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1ef14928a..bb680f8fa 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.8.0 +current_version = 1.8.1 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.8.1.md b/.changes/1.8.1.md new file mode 100644 index 000000000..f76fc9798 --- /dev/null +++ b/.changes/1.8.1.md @@ -0,0 +1,5 @@ +## dbt-redshift 1.8.1 - June 20, 2024 + +### Fixes + +- Stop adding aliases to subqueries when calling with `--empty` ([#782](https://github.com/dbt-labs/dbt-redshift/issues/782)) diff --git a/.changes/unreleased/Fixes-20240423-131503.yaml b/.changes/unreleased/Fixes-20240423-131503.yaml deleted file mode 100644 index 8b5b82b38..000000000 --- a/.changes/unreleased/Fixes-20240423-131503.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Stop adding aliases to subqueries when calling with `--empty` -time: 2024-04-23T13:15:03.118968-07:00 -custom: - Author: colin-rogers-dbt - Issue: "782" diff --git a/CHANGELOG.md b/CHANGELOG.md index 298ed1b82..36132fcf7 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.8.1 - June 20, 2024 + +### Fixes + +- Stop adding aliases to subqueries when calling with `--empty` ([#782](https://github.com/dbt-labs/dbt-redshift/issues/782)) + + + ## dbt-redshift 1.8.0 - May 09, 2024 ### Features @@ -69,7 +77,6 @@ - [@reptillicus](https://github.com/reptillicus) ([#641](https://github.com/dbt-labs/dbt-redshift/issues/641)) - [@soksamnanglim](https://github.com/soksamnanglim) ([#601](https://github.com/dbt-labs/dbt-redshift/pull/601)) - ## Previous Releases For information on prior major and minor releases, see their changelogs: - [1.6](https://github.com/dbt-labs/dbt-redshift/blob/1.6.latest/CHANGELOG.md) diff --git a/dbt/adapters/redshift/__version__.py b/dbt/adapters/redshift/__version__.py index 6aaa73b80..72126ce16 100644 --- a/dbt/adapters/redshift/__version__.py +++ b/dbt/adapters/redshift/__version__.py @@ -1 +1 @@ -version = "1.8.0" +version = "1.8.1"