Skip to content

Commit

Permalink
Bumping version to 1.0.0b1 (#4037)
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 11, 2021
1 parent 1a5bc83 commit 0a7471e
Show file tree
Hide file tree
Showing 8 changed files with 50 additions and 8 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.0a1
current_version = 1.0.0b1
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.0a1'
__version__ = '1.0.0b1'
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.0a1')
parser.add_argument('--dbt-core-version', default='1.0.0b1')
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.0a1')
parser.add_argument('--package-version', default='1.0.0b1')
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.0a1"
package_version = "1.0.0b1"
description = """dbt (data build tool) is a command line tool that helps \
analysts and engineers transform data in their warehouse more effectively"""

Expand Down
42 changes: 42 additions & 0 deletions docker/requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
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
colorama==0.4.4
dbt-core==1.0.0a1
dbt-extractor==0.4.0
dbt-postgres==1.0.0a1
hologram==0.0.14
idna==3.2
importlib-metadata==4.8.1
isodate==0.6.0
Jinja2==2.11.3
jsonschema==3.1.1
leather==0.3.4
Logbook==1.5.3
MarkupSafe==2.0.1
mashumaro==2.5
minimal-snowplow-tracker==0.0.2
msgpack==1.0.2
networkx==2.6.3
packaging==20.9
parsedatetime==2.6
psycopg2-binary==2.9.1
pycparser==2.20
pyparsing==2.4.7
pyrsistent==0.18.0
python-dateutil==2.8.2
python-slugify==5.0.2
pytimeparse==1.1.8
pytz==2021.3
PyYAML==5.4.1
requests==2.26.0
six==1.16.0
sqlparse==0.4.2
text-unidecode==1.3
typing-extensions==3.10.0.2
urllib3==1.26.7
Werkzeug==2.0.2
zipp==3.6.0
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.0a1'
version = '1.0.0b1'
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.0a1"
package_version = "1.0.0b1"
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.0a1"
package_version = "1.0.0b1"
description = """With dbt, data analysts and engineers can build analytics \
the way engineers build applications."""

Expand Down

0 comments on commit 0a7471e

Please sign in to comment.