Skip to content

Commit 336a3d4

Browse files
leahwiczgithub-actions[bot]FishtownBuildBot
authored
Bumping version to 1.0.1rc1 (#4517) (#4518)
* Bumping version to 1.0.1rc1 * Update CHANGELOG.md Co-authored-by: Github Build Bot <buildbot@fishtownanalytics.com> Co-authored-by: leahwicz <60146280+leahwicz@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Github Build Bot <buildbot@fishtownanalytics.com>
1 parent 74dc5c4 commit 336a3d4

9 files changed

Lines changed: 16 additions & 14 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 = 1.0.0
2+
current_version = 1.0.1rc1
33
parse = (?P<major>\d+)
44
\.(?P<minor>\d+)
55
\.(?P<patch>\d+)

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## dbt-core 1.0.1 (TBD)
22

3+
## dbt-core 1.0.1rc1 (December 20, 2021)
4+
35
### Fixes
46
- Fix wrong url in the dbt docs overview homepage ([#4442](https://github.com/dbt-labs/dbt-core/pull/4442))
57
- Fix redefined status param of SQLQueryStatus to typecheck the string which passes on `._message` value of `AdapterResponse` or the `str` value sent by adapter plugin. ([#4463](https://github.com/dbt-labs/dbt-core/pull/4463#issuecomment-990174166))

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__ = '1.0.0'
99+
__version__ = '1.0.1rc1'
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='1.0.0')
287+
parser.add_argument('--dbt-core-version', default='1.0.1rc1')
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='1.0.0')
292+
parser.add_argument('--package-version', default='1.0.1rc1')
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
@@ -25,7 +25,7 @@
2525

2626

2727
package_name = "dbt-core"
28-
package_version = "1.0.0"
28+
package_version = "1.0.1rc1"
2929
description = """With dbt, data analysts and engineers can build analytics \
3030
the way engineers build applications."""
3131

docker/requirements/requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ attrs==21.2.0
33
Babel==2.9.1
44
certifi==2021.10.8
55
cffi==1.15.0
6-
charset-normalizer==2.0.8
6+
charset-normalizer==2.0.9
77
click==8.0.3
88
colorama==0.4.4
9-
dbt-core==1.0.0
9+
dbt-core==1.0.1rc1
1010
dbt-extractor==0.4.0
11-
dbt-postgres==1.0.0
11+
dbt-postgres==1.0.1rc1
1212
future==0.18.2
1313
hologram==0.0.14
1414
idna==3.3
15-
importlib-metadata==4.8.2
16-
isodate==0.6.0
15+
importlib-metadata==4.9.0
16+
isodate==0.6.1
1717
Jinja2==2.11.3
1818
jsonschema==3.1.1
1919
leather==0.3.4
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = '1.0.0'
1+
version = '1.0.1rc1'

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 = "1.0.0"
44+
package_version = "1.0.1rc1"
4545
description = """The postgres adpter plugin for dbt (data build tool)"""
4646

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
if 'sdist' not in sys.argv:
77
print('')
8-
print('As of v1.0.0, `pip install dbt` is no longer supported.')
8+
print('As of v1.0.1rc1, `pip install dbt` is no longer supported.')
99
print('Instead, please use one of the following.')
1010
print('')
1111
print('**To use dbt with your specific database, platform, or query engine:**')
@@ -50,7 +50,7 @@
5050

5151

5252
package_name = "dbt"
53-
package_version = "1.0.0"
53+
package_version = "1.0.1rc1"
5454
description = """With dbt, data analysts and engineers can build analytics \
5555
the way engineers build applications."""
5656

0 commit comments

Comments
 (0)