diff --git a/.bumpversion-dbt.cfg b/.bumpversion-dbt.cfg index 38b7f8107..1dec832ac 100644 --- a/.bumpversion-dbt.cfg +++ b/.bumpversion-dbt.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.19.2rc2 +current_version = 0.19.2 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e8ef05522..49b302eec 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.19.2rc2 +current_version = 0.19.2 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/dbt/adapters/spark/__version__.py b/dbt/adapters/spark/__version__.py index 097aebdef..f59e7343d 100644 --- a/dbt/adapters/spark/__version__.py +++ b/dbt/adapters/spark/__version__.py @@ -1 +1 @@ -version = "0.19.2rc2" +version = "0.19.2" diff --git a/requirements.txt b/requirements.txt index eab4a3999..54be69587 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -dbt-core==0.19.2rc2 +dbt-core==0.19.2 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 609137dba..bf5d09272 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.19.2rc2' +dbt_version = '0.19.2' # the package version should be the dbt version, with maybe some things on the -# ends of it. (0.19.2rc2 vs 0.19.2rc2a1, 0.19.2rc2.1, ...) +# ends of it. (0.19.2 vs 0.19.2a1, 0.19.2.1, ...) if not package_version.startswith(dbt_version): raise ValueError( f'Invalid setup.py: package_version={package_version} must start with '