Skip to content

Commit

Permalink
Bumping version to 1.0.0b2 (#4119)
Browse files Browse the repository at this point in the history
Co-authored-by: Github Build Bot <[email protected]>
  • Loading branch information
github-actions[bot] and FishtownBuildBot authored Oct 22, 2021
1 parent f82745f commit 02fdc2c
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 14 deletions.
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 = 1.0.0b1
current_version = 1.0.0b2
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
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__ = '1.0.0b1'
__version__ = '1.0.0b2'
installed = get_installed_version()
4 changes: 2 additions & 2 deletions core/scripts/create_adapter_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,12 +284,12 @@ def parse_args(argv=None):
parser.add_argument('adapter')
parser.add_argument('--title-case', '-t', default=None)
parser.add_argument('--dependency', action='append')
parser.add_argument('--dbt-core-version', default='1.0.0b1')
parser.add_argument('--dbt-core-version', default='1.0.0b2')
parser.add_argument('--email')
parser.add_argument('--author')
parser.add_argument('--url')
parser.add_argument('--sql', action='store_true')
parser.add_argument('--package-version', default='1.0.0b1')
parser.add_argument('--package-version', default='1.0.0b2')
parser.add_argument('--project-version', default='1.0')
parser.add_argument(
'--no-dependency', action='store_false', dest='set_dependency'
Expand Down
2 changes: 1 addition & 1 deletion core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def read(fname):


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

Expand Down
13 changes: 7 additions & 6 deletions docker/requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ agate==1.6.1
attrs==21.2.0
Babel==2.9.1
certifi==2021.10.8
cffi==1.14.6
charset-normalizer==2.0.6
cffi==1.15.0
charset-normalizer==2.0.7
click==8.0.3
colorama==0.4.4
dbt-core==1.0.0a1
dbt-core==1.0.0b1
dbt-extractor==0.4.0
dbt-postgres==1.0.0a1
dbt-postgres==1.0.0b1
hologram==0.0.14
idna==3.2
idna==3.3
importlib-metadata==4.8.1
isodate==0.6.0
Jinja2==2.11.3
Expand All @@ -31,7 +32,7 @@ python-dateutil==2.8.2
python-slugify==5.0.2
pytimeparse==1.1.8
pytz==2021.3
PyYAML==5.4.1
PyYAML==6.0
requests==2.26.0
six==1.16.0
sqlparse==0.4.2
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 = '1.0.0b1'
version = '1.0.0b2'
2 changes: 1 addition & 1 deletion plugins/postgres/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def _dbt_psycopg2_name():


package_name = "dbt-postgres"
package_version = "1.0.0b1"
package_version = "1.0.0b2"
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 setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@


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

Expand Down

0 comments on commit 02fdc2c

Please sign in to comment.