From d4b863c8822e0ff6e2d5372fc1b07ba22586455c Mon Sep 17 00:00:00 2001 From: Leah Antkiewicz Date: Mon, 27 Sep 2021 16:59:25 +0000 Subject: [PATCH] Bumping version to 0.21.0rc2 --- .bumpversion-dbt.cfg | 2 +- .bumpversion.cfg | 2 +- dbt/adapters/spark/__version__.py | 2 +- requirements.txt | 2 +- setup.py | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion-dbt.cfg b/.bumpversion-dbt.cfg index 1c710725b..f223cff45 100644 --- a/.bumpversion-dbt.cfg +++ b/.bumpversion-dbt.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.21.0rc1 +current_version = 0.21.0rc2 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 890cfa141..80de5bf9e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.21.0rc1 +current_version = 0.21.0rc2 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/dbt/adapters/spark/__version__.py b/dbt/adapters/spark/__version__.py index cf023813c..5a1af5d62 100644 --- a/dbt/adapters/spark/__version__.py +++ b/dbt/adapters/spark/__version__.py @@ -1 +1 @@ -version = "0.21.0rc1" +version = "0.21.0rc2" diff --git a/requirements.txt b/requirements.txt index 48f9d1c4f..edde99c78 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -dbt-core==0.21.0rc1 +dbt-core==0.21.0rc2 PyHive[hive]>=0.6.0,<0.7.0 pyodbc>=4.0.30 sqlparams>=3.0.0 diff --git a/setup.py b/setup.py index 6c4897f18..59a41e5e4 100644 --- a/setup.py +++ b/setup.py @@ -28,9 +28,9 @@ def _dbt_spark_version(): package_version = _dbt_spark_version() description = """The SparkSQL plugin for dbt (data build tool)""" -dbt_version = '0.21.0rc1' +dbt_version = '0.21.0rc2' # the package version should be the dbt version, with maybe some things on the -# ends of it. (0.21.0rc1 vs 0.21.0rc1a1, 0.21.0rc1.1, ...) +# ends of it. (0.21.0rc2 vs 0.21.0rc2a1, 0.21.0rc2.1, ...) if not package_version.startswith(dbt_version): raise ValueError( f'Invalid setup.py: package_version={package_version} must start with '