diff --git a/.bumpversion-dbt.cfg b/.bumpversion-dbt.cfg index 846fc4e31..c58176a99 100644 --- a/.bumpversion-dbt.cfg +++ b/.bumpversion-dbt.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.20.2rc1 +current_version = 0.20.2rc2 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1b0d242e6..c0dc9721e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.20.2rc1 +current_version = 0.20.2rc2 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/dbt/adapters/spark/__version__.py b/dbt/adapters/spark/__version__.py index b4b830a7c..5064a7ab4 100644 --- a/dbt/adapters/spark/__version__.py +++ b/dbt/adapters/spark/__version__.py @@ -1 +1 @@ -version = "0.20.2rc1" +version = "0.20.2rc2" diff --git a/requirements.txt b/requirements.txt index b2f412b03..669e38aeb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -dbt-core==0.20.2rc1 +dbt-core==0.20.2rc2 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 5264dbbee..7c807d5d7 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.2rc1' +dbt_version = '0.20.2rc2' # the package version should be the dbt version, with maybe some things on the -# ends of it. (0.20.2rc1 vs 0.20.2rc1a1, 0.20.2rc1.1, ...) +# ends of it. (0.20.2rc2 vs 0.20.2rc2a1, 0.20.2rc2.1, ...) if not package_version.startswith(dbt_version): raise ValueError( f'Invalid setup.py: package_version={package_version} must start with '