From 98109362439fc13b3bd7c482195d0cecf63c121d Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Fri, 4 Aug 2023 17:00:50 +0000 Subject: [PATCH] Bumping version to 1.3.1 and generate changelog --- .bumpversion.cfg | 8 +------- .changes/1.3.1.md | 8 ++++++++ .../unreleased/Breaking Changes-20230530-165542.yaml | 6 ------ CHANGELOG.md | 12 ++++++++++++ dbt/adapters/redshift/__version__.py | 2 +- setup.py | 2 +- 6 files changed, 23 insertions(+), 15 deletions(-) create mode 100644 .changes/1.3.1.md delete mode 100644 .changes/unreleased/Breaking Changes-20230530-165542.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7c34d83bd..d8176edf7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,11 +1,5 @@ [bumpversion] -current_version = 1.3.0 - -# `parse` allows parsing the version into the parts we need to check. There are some -# unnamed groups and that's okay because they do not need to be audited. If any part -# of the version passed and does not match the regex, it will fail. -# expected matches: `1.5.0`, `1.5.0a1`, `1.5.0a1.dev123457+nightly` -# excepted failures: `1`, `1.5`, `1.5.2-a1`, `text1.5.0` +current_version = 1.3.1 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.3.1.md b/.changes/1.3.1.md new file mode 100644 index 000000000..4b668fdba --- /dev/null +++ b/.changes/1.3.1.md @@ -0,0 +1,8 @@ +## dbt-redshift 1.3.1 - August 04, 2023 + +### Breaking Changes + +- Drop support for python 3.7 ([#dbt-core/7082](https://github.com/dbt-labs/dbt-redshift/issues/dbt-core/7082)) + +### Contributors +- [@mikealfare](https://github.com/mikealfare) ([#dbt-core/7082](https://github.com/dbt-labs/dbt-redshift/issues/dbt-core/7082)) diff --git a/.changes/unreleased/Breaking Changes-20230530-165542.yaml b/.changes/unreleased/Breaking Changes-20230530-165542.yaml deleted file mode 100644 index 68b4bfdda..000000000 --- a/.changes/unreleased/Breaking Changes-20230530-165542.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Breaking Changes -body: Drop support for python 3.7 -time: 2023-05-30T16:55:42.393416-04:00 -custom: - Author: mikealfare - Issue: dbt-core/7082 diff --git a/CHANGELOG.md b/CHANGELOG.md index 34f8f6a43..1c204e119 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ - Changes are listed under the (pre)release in which they first appear. Subsequent releases include changes from previous releases. - "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.3.1 - August 04, 2023 + +### Breaking Changes + +- Drop support for python 3.7 ([#dbt-core/7082](https://github.com/dbt-labs/dbt-redshift/issues/dbt-core/7082)) + +### Contributors +- [@mikealfare](https://github.com/mikealfare) ([#dbt-core/7082](https://github.com/dbt-labs/dbt-redshift/issues/dbt-core/7082)) + + ## dbt-redshift 1.3.0 - October 12, 2022 ### Features - Add changie to dbt-redshift ([#151](https://github.com/dbt-labs/dbt-redshift/issues/151), [#152](https://github.com/dbt-labs/dbt-redshift/pull/152)) @@ -30,6 +41,7 @@ - [@epapineau](https://github.com/epapineau) ([#166](https://github.com/dbt-labs/dbt-redshift/pull/166)) - [@graciegoheen](https://github.com/graciegoheen) ([#182](https://github.com/dbt-labs/dbt-redshift/pull/182)) - [@jpmmcneill](https://github.com/jpmmcneill) ([#190](https://github.com/dbt-labs/dbt-redshift/pull/190)) + ## Previous Releases For information on prior major and minor releases, see their changelogs: - [1.2](https://github.com/dbt-labs/dbt-redshift/blob/1.2.latest/CHANGELOG.md) diff --git a/dbt/adapters/redshift/__version__.py b/dbt/adapters/redshift/__version__.py index d28b3ddc3..35ec9a371 100644 --- a/dbt/adapters/redshift/__version__.py +++ b/dbt/adapters/redshift/__version__.py @@ -1 +1 @@ -version = "1.3.0" +version = "1.3.1" diff --git a/setup.py b/setup.py index 514a17c68..9fa826e20 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ def _get_dbt_core_version(): package_name = "dbt-redshift" -package_version = "1.3.0" +package_version = "1.3.1" dbt_core_version = _get_dbt_core_version() description = """The Redshift adapter plugin for dbt"""