Skip to content

Commit

Permalink
Release dbt v0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FishtownBuildBot committed Jun 8, 2020
1 parent 2636363 commit 5f8efc3
Show file tree
Hide file tree
Showing 14 changed files with 77 additions and 14 deletions.
3 changes: 1 addition & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.17.0rc4
current_version = 0.17.0
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down Expand Up @@ -41,4 +41,3 @@ first_value = 1
[bumpversion:file:plugins/snowflake/dbt/adapters/snowflake/__version__.py]

[bumpversion:file:plugins/bigquery/dbt/adapters/bigquery/__version__.py]

2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## dbt 0.17.0 (Release TBD)
## dbt 0.17.0 (June 08, 2020)

### Fixes
- Removed `pytest-logbook` dependency from `dbt-core` ([#2505](https://github.com/fishtown-analytics/dbt/pull/2505))
Expand Down
2 changes: 1 addition & 1 deletion core/dbt/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,5 +96,5 @@ def _get_dbt_plugins_info():
yield plugin_name, mod.version


__version__ = '0.17.0rc4'
__version__ = '0.17.0'
installed = get_installed_version()
2 changes: 1 addition & 1 deletion core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def read(fname):


package_name = "dbt-core"
package_version = "0.17.0rc4"
package_version = "0.17.0"
description = """dbt (data build tool) is a command line tool that helps \
analysts and engineers transform data in their warehouse more effectively"""

Expand Down
64 changes: 64 additions & 0 deletions docker/requirements/requirements.0.17.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
agate==1.6.1
asn1crypto==1.3.0
attrs==19.3.0
azure-common==1.1.25
azure-storage-blob==2.1.0
azure-storage-common==2.1.0
Babel==2.8.0
boto3==1.11.17
botocore==1.14.17
cachetools==4.1.0
certifi==2020.4.5.2
cffi==1.13.2
chardet==3.0.4
colorama==0.4.3
cryptography==2.9.2
decorator==4.4.2
docutils==0.15.2
google-api-core==1.16.0
google-auth==1.16.1
google-cloud-bigquery==1.24.0
google-cloud-core==1.3.0
google-resumable-media==0.5.1
googleapis-common-protos==1.6.0
hologram==0.0.7
idna==2.8
ijson==2.6.1
importlib-metadata==1.6.1
isodate==0.6.0
Jinja2==2.11.2
jmespath==0.10.0
json-rpc==1.13.0
jsonschema==3.1.1
leather==0.3.3
Logbook==1.5.3
MarkupSafe==1.1.1
minimal-snowplow-tracker==0.0.2
networkx==2.4
oscrypto==1.2.0
parsedatetime==2.6
protobuf==3.11.3
psycopg2-binary==2.8.5
pyasn1==0.4.8
pyasn1-modules==0.2.8
pycparser==2.20
pycryptodomex==3.9.7
PyJWT==1.7.1
pyOpenSSL==19.1.0
pyrsistent==0.16.0
python-dateutil==2.8.1
python-slugify==4.0.0
pytimeparse==1.1.8
pytz==2020.1
PyYAML==5.3.1
requests==2.22.0
rsa==4.0
s3transfer==0.3.3
six==1.15.0
snowflake-connector-python==2.2.1
sqlparse==0.3.1
text-unidecode==1.3
typing-extensions==3.7.4.2
urllib3==1.25.9
Werkzeug==0.16.1
zipp==3.1.0
2 changes: 1 addition & 1 deletion plugins/bigquery/dbt/adapters/bigquery/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '0.17.0rc4'
version = '0.17.0'
2 changes: 1 addition & 1 deletion plugins/bigquery/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


package_name = "dbt-bigquery"
package_version = "0.17.0rc4"
package_version = "0.17.0"
description = """The bigquery adapter plugin for dbt (data build tool)"""

this_directory = os.path.abspath(os.path.dirname(__file__))
Expand Down
2 changes: 1 addition & 1 deletion plugins/postgres/dbt/adapters/postgres/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '0.17.0rc4'
version = '0.17.0'
2 changes: 1 addition & 1 deletion plugins/postgres/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def _dbt_psycopg2_name():


package_name = "dbt-postgres"
package_version = "0.17.0rc4"
package_version = "0.17.0"
description = """The postgres adpter plugin for dbt (data build tool)"""

this_directory = os.path.abspath(os.path.dirname(__file__))
Expand Down
2 changes: 1 addition & 1 deletion plugins/redshift/dbt/adapters/redshift/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '0.17.0rc4'
version = '0.17.0'
2 changes: 1 addition & 1 deletion plugins/redshift/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


package_name = "dbt-redshift"
package_version = "0.17.0rc4"
package_version = "0.17.0"
description = """The redshift adapter plugin for dbt (data build tool)"""

this_directory = os.path.abspath(os.path.dirname(__file__))
Expand Down
2 changes: 1 addition & 1 deletion plugins/snowflake/dbt/adapters/snowflake/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '0.17.0rc4'
version = '0.17.0'
2 changes: 1 addition & 1 deletion plugins/snowflake/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


package_name = "dbt-snowflake"
package_version = "0.17.0rc4"
package_version = "0.17.0"
description = """The snowflake adapter plugin for dbt (data build tool)"""

this_directory = os.path.abspath(os.path.dirname(__file__))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


package_name = "dbt"
package_version = "0.17.0rc4"
package_version = "0.17.0"
description = """With dbt, data analysts and engineers can build analytics \
the way engineers build applications."""

Expand Down

0 comments on commit 5f8efc3

Please sign in to comment.