Skip to content

Commit

Permalink
Merge pull request #101 from fishtown-analytics/bump/0.17.2
Browse files Browse the repository at this point in the history
Bump v0.17.2
  • Loading branch information
jtcohen6 authored Aug 5, 2020
2 parents 1bf1ea9 + 492c58b commit 0e93565
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion-dbt.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.17.1
current_version = 0.17.2
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.17.1
current_version = 0.17.2
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/spark/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.17.1"
version = "0.17.2"
3 changes: 1 addition & 2 deletions dbt/adapters/spark/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,7 @@ def list_relations_without_caching(
try:
results = self.execute_macro(
LIST_RELATIONS_MACRO_NAME,
kwargs=kwargs,
release=True
kwargs=kwargs
)
except dbt.exceptions.RuntimeException as e:
errmsg = getattr(e, 'msg', '')
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dbt-core==0.17.1
dbt-core==0.17.2
PyHive[hive]>=0.6.0,<0.7.0
thrift>=0.11.0,<0.12.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.17.1'
dbt_version = '0.17.2'
# the package version should be the dbt version, with maybe some things on the
# ends of it. (0.17.1 vs 0.17.1a1, 0.17.1.1, ...)
# ends of it. (0.17.2 vs 0.17.2a1, 0.17.2.1, ...)
if not package_version.startswith(dbt_version):
raise ValueError(
f'Invalid setup.py: package_version={package_version} must start with '
Expand Down

0 comments on commit 0e93565

Please sign in to comment.