From 1a618e7240b01d96289dc42adb707b965481e8c4 Mon Sep 17 00:00:00 2001 From: Jacob Beck Date: Tue, 23 Jul 2019 19:46:26 -0600 Subject: [PATCH] I can't live like this anymore, bumped to 0.15.0a1 --- .bumpversion.cfg | 2 +- core/dbt/version.py | 2 +- core/setup.py | 2 +- plugins/bigquery/setup.py | 2 +- plugins/postgres/setup.py | 2 +- plugins/redshift/setup.py | 2 +- plugins/snowflake/setup.py | 2 +- setup.py | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 78602c74953..63c6f6e961d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.14.0 +current_version = 0.15.0a1 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/core/dbt/version.py b/core/dbt/version.py index 6a5d1934869..fbe936f9d65 100644 --- a/core/dbt/version.py +++ b/core/dbt/version.py @@ -56,5 +56,5 @@ def get_version_information(): .format(version_msg)) -__version__ = '0.14.0' +__version__ = '0.15.0a1' installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index 80256b4dd9b..9d69526b31d 100644 --- a/core/setup.py +++ b/core/setup.py @@ -9,7 +9,7 @@ def read(fname): package_name = "dbt-core" -package_version = "0.14.0" +package_version = "0.15.0a1" description = """dbt (data build tool) is a command line tool that helps \ analysts and engineers transform data in their warehouse more effectively""" diff --git a/plugins/bigquery/setup.py b/plugins/bigquery/setup.py index 531a66e49bb..eeb2ff40263 100644 --- a/plugins/bigquery/setup.py +++ b/plugins/bigquery/setup.py @@ -4,7 +4,7 @@ import os package_name = "dbt-bigquery" -package_version = "0.14.0" +package_version = "0.15.0a1" description = """The bigquery adapter plugin for dbt (data build tool)""" this_directory = os.path.abspath(os.path.dirname(__file__)) diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index 41d217ead19..f98cba072ca 100644 --- a/plugins/postgres/setup.py +++ b/plugins/postgres/setup.py @@ -4,7 +4,7 @@ import os package_name = "dbt-postgres" -package_version = "0.14.0" +package_version = "0.15.0a1" description = """The postgres adpter plugin for dbt (data build tool)""" this_directory = os.path.abspath(os.path.dirname(__file__)) diff --git a/plugins/redshift/setup.py b/plugins/redshift/setup.py index 2e5b37e7ba7..48bfb096811 100644 --- a/plugins/redshift/setup.py +++ b/plugins/redshift/setup.py @@ -4,7 +4,7 @@ import os package_name = "dbt-redshift" -package_version = "0.14.0" +package_version = "0.15.0a1" description = """The redshift adapter plugin for dbt (data build tool)""" this_directory = os.path.abspath(os.path.dirname(__file__)) diff --git a/plugins/snowflake/setup.py b/plugins/snowflake/setup.py index c4e46fb4147..b698520d467 100644 --- a/plugins/snowflake/setup.py +++ b/plugins/snowflake/setup.py @@ -4,7 +4,7 @@ import os package_name = "dbt-snowflake" -package_version = "0.14.0" +package_version = "0.15.0a1" description = """The snowflake adapter plugin for dbt (data build tool)""" this_directory = os.path.abspath(os.path.dirname(__file__)) diff --git a/setup.py b/setup.py index fac6523e884..ce42c5b9515 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ package_name = "dbt" -package_version = "0.14.0" +package_version = "0.15.0a1" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications."""