Skip to content

Commit fa8a4f2

Browse files
Merge remote-tracking branch 'origin/releases/0.18.0' into dev/marian-anderson
2 parents 1a9083d + 481bdd5 commit fa8a4f2

File tree

14 files changed

+79
-13
lines changed

14 files changed

+79
-13
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.18.0rc2
2+
current_version = 0.18.0
33
parse = (?P<major>\d+)
44
\.(?P<minor>\d+)
55
\.(?P<patch>\d+)

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## dbt 0.18.0 (Release TBD)
1+
## dbt 0.18.0 (September 03, 2020)
22

33
## dbt 0.18.0rc2 (September 03, 2020)
44

core/dbt/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,5 @@ def _get_dbt_plugins_info():
9696
yield plugin_name, mod.version
9797

9898

99-
__version__ = '0.18.0rc2'
99+
__version__ = '0.18.0'
100100
installed = get_installed_version()

core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def read(fname):
2424

2525

2626
package_name = "dbt-core"
27-
package_version = "0.18.0rc2"
27+
package_version = "0.18.0"
2828
description = """dbt (data build tool) is a command line tool that helps \
2929
analysts and engineers transform data in their warehouse more effectively"""
3030

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
agate==1.6.1
2+
asn1crypto==1.4.0
3+
attrs==20.1.0
4+
azure-common==1.1.25
5+
azure-core==1.8.0
6+
azure-storage-blob==12.4.0
7+
Babel==2.8.0
8+
boto3==1.11.17
9+
botocore==1.14.17
10+
cachetools==4.1.1
11+
certifi==2020.6.20
12+
cffi==1.14.2
13+
chardet==3.0.4
14+
colorama==0.4.3
15+
cryptography==2.9.2
16+
decorator==4.4.2
17+
docutils==0.15.2
18+
google-api-core==1.16.0
19+
google-auth==1.21.0
20+
google-cloud-bigquery==1.25.0
21+
google-cloud-core==1.3.0
22+
google-resumable-media==0.5.1
23+
googleapis-common-protos==1.6.0
24+
hologram==0.0.10
25+
idna==2.9
26+
importlib-metadata==1.7.0
27+
isodate==0.6.0
28+
Jinja2==2.11.2
29+
jmespath==0.10.0
30+
json-rpc==1.13.0
31+
jsonschema==3.1.1
32+
leather==0.3.3
33+
Logbook==1.5.3
34+
MarkupSafe==1.1.1
35+
minimal-snowplow-tracker==0.0.2
36+
msrest==0.6.18
37+
networkx==2.5
38+
oauthlib==3.1.0
39+
oscrypto==1.2.1
40+
parsedatetime==2.6
41+
protobuf==3.11.3
42+
psycopg2-binary==2.8.5
43+
pyasn1==0.4.8
44+
pyasn1-modules==0.2.8
45+
pycparser==2.20
46+
pycryptodomex==3.9.8
47+
PyJWT==1.7.1
48+
pyOpenSSL==19.1.0
49+
pyrsistent==0.16.0
50+
python-dateutil==2.8.1
51+
python-slugify==4.0.1
52+
pytimeparse==1.1.8
53+
pytz==2020.1
54+
PyYAML==5.3.1
55+
requests==2.23.0
56+
requests-oauthlib==1.3.0
57+
rsa==4.6
58+
s3transfer==0.3.3
59+
six==1.15.0
60+
snowflake-connector-python==2.2.10
61+
sqlparse==0.3.1
62+
text-unidecode==1.3
63+
typing-extensions==3.7.4.3
64+
urllib3==1.25.10
65+
Werkzeug==0.16.1
66+
zipp==3.1.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = '0.18.0rc2'
1+
version = '0.18.0'

plugins/bigquery/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121

2222
package_name = "dbt-bigquery"
23-
package_version = "0.18.0rc2"
23+
package_version = "0.18.0"
2424
description = """The bigquery adapter plugin for dbt (data build tool)"""
2525

2626
this_directory = os.path.abspath(os.path.dirname(__file__))
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = '0.18.0rc2'
1+
version = '0.18.0'

plugins/postgres/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def _dbt_psycopg2_name():
4141

4242

4343
package_name = "dbt-postgres"
44-
package_version = "0.18.0rc2"
44+
package_version = "0.18.0"
4545
description = """The postgres adpter plugin for dbt (data build tool)"""
4646

4747
this_directory = os.path.abspath(os.path.dirname(__file__))
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = '0.18.0rc2'
1+
version = '0.18.0'

0 commit comments

Comments
 (0)