From 65729c4acc5d5c87dfb8feb0ec65d52e4f5400f1 Mon Sep 17 00:00:00 2001 From: Connor McArthur Date: Wed, 5 Dec 2018 12:15:50 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.12.1=20=E2=86=92=200.12.2a1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- dbt/version.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 32178aaf456..62b0bf0a062 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.1 +current_version = 0.12.2a1 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/dbt/version.py b/dbt/version.py index 2cc558dd5ae..eaf5070468c 100644 --- a/dbt/version.py +++ b/dbt/version.py @@ -77,5 +77,5 @@ def get_version_information(): .format(version_msg)) -__version__ = '0.12.1' +__version__ = '0.12.2a1' installed = get_installed_version() diff --git a/setup.py b/setup.py index cb9091e4506..ab763c0965f 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() package_name = "dbt" -package_version = "0.12.1" +package_version = "0.12.2a1" description = """dbt (data build tool) is a command line tool that helps \ analysts and engineers transform data in their warehouse more effectively"""