From 071da7d026bb364d27839ed362f3f94274a35978 Mon Sep 17 00:00:00 2001 From: Leah Antkiewicz Date: Wed, 7 Jul 2021 17:24:01 +0000 Subject: [PATCH] Bumping version to 0.20.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 86b21d727..954cdbe36 100644 --- a/.bumpversion-dbt.cfg +++ b/.bumpversion-dbt.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.20.0rc1 +current_version = 0.20.0rc2 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b43132481..0b072dbd8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.20.0rc1 +current_version = 0.20.0rc2 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/dbt/adapters/spark/__version__.py b/dbt/adapters/spark/__version__.py index 7cb096086..586d2c553 100644 --- a/dbt/adapters/spark/__version__.py +++ b/dbt/adapters/spark/__version__.py @@ -1 +1 @@ -version = "0.20.0rc1" +version = "0.20.0rc2" diff --git a/requirements.txt b/requirements.txt index b91b48044..cc07c7bdb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -dbt-core==0.20.0rc1 +dbt-core==0.20.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 26020960d..e2fbf0502 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.20.0rc1' +dbt_version = '0.20.0rc2' # the package version should be the dbt version, with maybe some things on the -# ends of it. (0.20.0rc1 vs 0.20.0rc1a1, 0.20.0rc1.1, ...) +# ends of it. (0.20.0rc2 vs 0.20.0rc2a1, 0.20.0rc2.1, ...) if not package_version.startswith(dbt_version): raise ValueError( f'Invalid setup.py: package_version={package_version} must start with '