From b3f8c3253a61880fb488eef72cd7555cb2542e99 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 16 Mar 2023 20:11:56 +0000 Subject: [PATCH] Bumping version to 1.5.0b3 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.5.0-b3.md | 9 +++++++++ .../Features-20230301-113553.yaml | 0 .../Fixes-20230316-132120.yaml | 0 CHANGELOG.md | 14 ++++++++++++-- dbt/adapters/redshift/__version__.py | 2 +- 6 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 .changes/1.5.0-b3.md rename .changes/{unreleased => 1.5.0}/Features-20230301-113553.yaml (100%) rename .changes/{unreleased => 1.5.0}/Fixes-20230316-132120.yaml (100%) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 40acefba6..448efb95c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.0b2 +current_version = 1.5.0b3 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.0-b3.md b/.changes/1.5.0-b3.md new file mode 100644 index 000000000..dda1f66d1 --- /dev/null +++ b/.changes/1.5.0-b3.md @@ -0,0 +1,9 @@ +## dbt-redshift 1.5.0-b3 - March 16, 2023 + +### Features + +- Enforce contracts on models materialized as tables and views ([#319](https://github.com/dbt-labs/dbt-redshift/issues/319), [#340](https://github.com/dbt-labs/dbt-redshift/issues/340)) + +### Fixes + +- Added methods to `RedshiftAdapter` that were inadvertantly dropped when migrating from `PostgresAdapter` to `SQLAdapter` ([#365](https://github.com/dbt-labs/dbt-redshift/issues/365)) diff --git a/.changes/unreleased/Features-20230301-113553.yaml b/.changes/1.5.0/Features-20230301-113553.yaml similarity index 100% rename from .changes/unreleased/Features-20230301-113553.yaml rename to .changes/1.5.0/Features-20230301-113553.yaml diff --git a/.changes/unreleased/Fixes-20230316-132120.yaml b/.changes/1.5.0/Fixes-20230316-132120.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230316-132120.yaml rename to .changes/1.5.0/Fixes-20230316-132120.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index dc87d0f99..4a583e587 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,24 @@ - "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-b3 - March 16, 2023 + +### Features + +- Enforce contracts on models materialized as tables and views ([#319](https://github.com/dbt-labs/dbt-redshift/issues/319), [#340](https://github.com/dbt-labs/dbt-redshift/issues/340)) + +### Fixes + +- 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 - Rename constraints_enabled to contract ([#330](https://github.com/dbt-labs/dbt-redshift/issues/330)) - - ## dbt-redshift 1.5.0-b1 - February 22, 2023 ### Features diff --git a/dbt/adapters/redshift/__version__.py b/dbt/adapters/redshift/__version__.py index 4f8b15313..649c005ac 100644 --- a/dbt/adapters/redshift/__version__.py +++ b/dbt/adapters/redshift/__version__.py @@ -1 +1 @@ -version = "1.5.0b2" +version = "1.5.0b3"