Skip to content

Commit c009485

Browse files
Merge remote-tracking branch 'origin/releases/0.21.0' into 0.21.latest
2 parents 4718dd3 + 9cdc451 commit c009485

15 files changed

Lines changed: 90 additions & 15 deletions

File tree

.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.21.0rc2
2+
current_version = 0.21.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.21.0 (Release TBD)
1+
## dbt 0.21.0 (October 04, 2021)
22

33
## dbt 0.21.0rc2 (September 27, 2021)
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.21.0rc2'
99+
__version__ = '0.21.0'
100100
installed = get_installed_version()

core/scripts/create_adapter_plugins.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,12 +284,12 @@ def parse_args(argv=None):
284284
parser.add_argument('adapter')
285285
parser.add_argument('--title-case', '-t', default=None)
286286
parser.add_argument('--dependency', action='append')
287-
parser.add_argument('--dbt-core-version', default='0.21.0rc2')
287+
parser.add_argument('--dbt-core-version', default='0.21.0')
288288
parser.add_argument('--email')
289289
parser.add_argument('--author')
290290
parser.add_argument('--url')
291291
parser.add_argument('--sql', action='store_true')
292-
parser.add_argument('--package-version', default='0.21.0rc2')
292+
parser.add_argument('--package-version', default='0.21.0')
293293
parser.add_argument('--project-version', default='1.0')
294294
parser.add_argument(
295295
'--no-dependency', action='store_false', dest='set_dependency'

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.21.0rc2"
27+
package_version = "0.21.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: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
agate==1.6.1
2+
asn1crypto==1.4.0
3+
attrs==21.2.0
4+
azure-common==1.1.27
5+
azure-core==1.19.0
6+
azure-storage-blob==12.9.0
7+
Babel==2.9.1
8+
boto3==1.18.53
9+
botocore==1.21.53
10+
cachetools==4.2.4
11+
certifi==2021.5.30
12+
cffi==1.14.6
13+
chardet==4.0.0
14+
charset-normalizer==2.0.6
15+
colorama==0.4.4
16+
cryptography==3.4.8
17+
google-api-core==1.31.3
18+
google-auth==1.35.0
19+
google-cloud-bigquery==2.28.0
20+
google-cloud-core==1.7.2
21+
google-crc32c==1.2.0
22+
google-resumable-media==2.0.3
23+
googleapis-common-protos==1.53.0
24+
grpcio==1.41.0
25+
hologram==0.0.14
26+
idna==3.2
27+
importlib-metadata==4.8.1
28+
isodate==0.6.0
29+
jeepney==0.7.1
30+
Jinja2==2.11.3
31+
jmespath==0.10.0
32+
json-rpc==1.13.0
33+
jsonschema==3.1.1
34+
keyring==21.8.0
35+
leather==0.3.3
36+
Logbook==1.5.3
37+
MarkupSafe==2.0.1
38+
mashumaro==2.5
39+
minimal-snowplow-tracker==0.0.2
40+
msgpack==1.0.2
41+
msrest==0.6.21
42+
networkx==2.6.3
43+
oauthlib==3.1.1
44+
oscrypto==1.2.1
45+
packaging==20.9
46+
parsedatetime==2.6
47+
proto-plus==1.19.2
48+
protobuf==3.17.3
49+
psycopg2-binary==2.9.1
50+
pyasn1==0.4.8
51+
pyasn1-modules==0.2.8
52+
pycparser==2.20
53+
pycryptodomex==3.10.4
54+
PyJWT==2.1.0
55+
pyOpenSSL==20.0.1
56+
pyparsing==2.4.7
57+
pyrsistent==0.18.0
58+
python-dateutil==2.8.2
59+
python-slugify==5.0.2
60+
pytimeparse==1.1.8
61+
pytz==2021.3
62+
PyYAML==5.4.1
63+
requests==2.26.0
64+
requests-oauthlib==1.3.0
65+
rsa==4.7.2
66+
s3transfer==0.5.0
67+
SecretStorage==3.3.1
68+
six==1.16.0
69+
snowflake-connector-python==2.5.1
70+
sqlparse==0.4.2
71+
text-unidecode==1.3
72+
typing-extensions==3.10.0.2
73+
urllib3==1.26.7
74+
Werkzeug==2.0.1
75+
zipp==3.6.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = '0.21.0rc2'
1+
version = '0.21.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.21.0rc2"
23+
package_version = "0.21.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.21.0rc2'
1+
version = '0.21.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.21.0rc2"
44+
package_version = "0.21.0"
4545
description = """The postgres adpter plugin for dbt (data build tool)"""
4646

4747
this_directory = os.path.abspath(os.path.dirname(__file__))

0 commit comments

Comments
 (0)