From b2c803952409dd9263481a386e4df0a7bca637a6 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 30 Mar 2023 19:00:21 +0000 Subject: [PATCH] Bumping version to 1.5.0b4 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.5.0-b4.md | 10 ++++++++++ .../Features-20230314-124314.yaml | 0 .../Features-20230314-154621.yaml | 0 .../Under the Hood-20230223-110314.yaml | 0 CHANGELOG.md | 15 +++++++++++++-- dbt/adapters/redshift/__version__.py | 2 +- 7 files changed, 25 insertions(+), 4 deletions(-) create mode 100644 .changes/1.5.0-b4.md rename .changes/{unreleased => 1.5.0}/Features-20230314-124314.yaml (100%) rename .changes/{unreleased => 1.5.0}/Features-20230314-154621.yaml (100%) rename .changes/{unreleased => 1.5.0}/Under the Hood-20230223-110314.yaml (100%) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 448efb95c..40a1d919e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.0b3 +current_version = 1.5.0b4 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.0-b4.md b/.changes/1.5.0-b4.md new file mode 100644 index 000000000..5ab44a175 --- /dev/null +++ b/.changes/1.5.0-b4.md @@ -0,0 +1,10 @@ +## dbt-redshift 1.5.0-b4 - March 30, 2023 + +### Features + +- Use contracted column order in create_table_as ([#356](https://github.com/dbt-labs/dbt-redshift/issues/356)) +- Modify adapter to work with unified constraint fields ([#341](https://github.com/dbt-labs/dbt-redshift/issues/341)) + +### Under the Hood + +- Treat contract config as a python object ([#330](https://github.com/dbt-labs/dbt-redshift/issues/330), [#382](https://github.com/dbt-labs/dbt-redshift/issues/382)) diff --git a/.changes/unreleased/Features-20230314-124314.yaml b/.changes/1.5.0/Features-20230314-124314.yaml similarity index 100% rename from .changes/unreleased/Features-20230314-124314.yaml rename to .changes/1.5.0/Features-20230314-124314.yaml diff --git a/.changes/unreleased/Features-20230314-154621.yaml b/.changes/1.5.0/Features-20230314-154621.yaml similarity index 100% rename from .changes/unreleased/Features-20230314-154621.yaml rename to .changes/1.5.0/Features-20230314-154621.yaml diff --git a/.changes/unreleased/Under the Hood-20230223-110314.yaml b/.changes/1.5.0/Under the Hood-20230223-110314.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20230223-110314.yaml rename to .changes/1.5.0/Under the Hood-20230223-110314.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a583e587..aedf8599c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ - "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.0-b4 - March 30, 2023 + +### Features + +- Use contracted column order in create_table_as ([#356](https://github.com/dbt-labs/dbt-redshift/issues/356)) +- Modify adapter to work with unified constraint fields ([#341](https://github.com/dbt-labs/dbt-redshift/issues/341)) + +### Under the Hood + +- Treat contract config as a python object ([#330](https://github.com/dbt-labs/dbt-redshift/issues/330), [#382](https://github.com/dbt-labs/dbt-redshift/issues/382)) + + + ## dbt-redshift 1.5.0-b3 - March 16, 2023 ### Features @@ -15,8 +28,6 @@ - Added methods to `RedshiftAdapter` that were inadvertantly dropped when migrating from `PostgresAdapter` to `SQLAdapter` ([#365](https://github.com/dbt-labs/dbt-redshift/issues/365)) - - ## dbt-redshift 1.5.0-b2 - March 02, 2023 ### Under the Hood diff --git a/dbt/adapters/redshift/__version__.py b/dbt/adapters/redshift/__version__.py index 649c005ac..4a7a8147e 100644 --- a/dbt/adapters/redshift/__version__.py +++ b/dbt/adapters/redshift/__version__.py @@ -1 +1 @@ -version = "1.5.0b3" +version = "1.5.0b4"