From 43ba6e0e68303a54b8cc874927a3561e4b612983 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Apr 2022 09:47:29 -0400 Subject: [PATCH] Bumping version to 1.0.1rc1 (#93) * Bumping version to 1.0.1rc1 * Fixing up changelog * Update CHANGELOG.md Co-authored-by: Github Build Bot Co-authored-by: leahwicz <60146280+leahwicz@users.noreply.github.com> --- .bumpversion.cfg | 2 +- CHANGELOG.md | 11 +++++++---- dbt/adapters/redshift/__version__.py | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b587fb0e3..47f7e862e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1rc1 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24e26896b..1a1581074 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,14 @@ -## dbt-redshift 1.0.1 (TBD) +## dbt-redshift 1.0.1rc1 (April 6, 2022) ### Fixes +- Fix table creation statement ordering when including both the BACKUP parameter as well as the dist/sort keys ([#60](https://github.com/dbt-labs/dbt-redshift/issues/60), [#63](https://github.com/dbt-labs/dbt-redshift/pull/63)) ### Under the hood -- install compatible branch of dbt-core in unit/integration tests based on merge target ([#80](https://github.com/dbt-labs/dbt-redshift/pull/80)) -- Fix test related to preventing coercion of boolean values (True,False) to numeric values (0,1) in query results ([#58](https://github.com/dbt-labs/dbt-redshift/blob/1.0.latest/CHANGELOG.md)) -- Fix table creation statement ordering when including both the BACKUP parameter as well as the dist/sort keys ([#23](https://github.com/dbt-labs/dbt-redshift/issues/60)) +- Install compatible branch of dbt-core in unit/integration tests based on merge target ([#80](https://github.com/dbt-labs/dbt-redshift/pull/80)) +- Fix test related to preventing coercion of boolean values (True,False) to numeric values (0,1) in query results ([#58](https://github.com/dbt-labs/dbt-redshift/pull/58)) + +### Contributors +- [@SMeltser](https://github.com/SMeltser) ([#63](https://github.com/dbt-labs/dbt-redshift/pull/63)) ## dbt-redshift 1.0.0 (December 3, 2021) diff --git a/dbt/adapters/redshift/__version__.py b/dbt/adapters/redshift/__version__.py index de43469d2..114a10269 100644 --- a/dbt/adapters/redshift/__version__.py +++ b/dbt/adapters/redshift/__version__.py @@ -1 +1 @@ -version = '1.0.0' +version = '1.0.1rc1' diff --git a/setup.py b/setup.py index 74f654b32..4f9fb85fe 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ def _get_dbt_core_version(): #TODO remove old logic and add to versionBump script package_name = "dbt-redshift" -package_version = "1.0.0" +package_version = "1.0.1rc1" dbt_core_version = _get_dbt_core_version() description = """The Redshift adapter plugin for dbt"""