From 141bdd6f967cb08f8c650e6aa65ae27193130087 Mon Sep 17 00:00:00 2001 From: Connor McArthur Date: Tue, 3 Sep 2019 19:52:54 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.14.1rc2=20=E2=86=92=200.14.?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 4 ++-- 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 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c6145db1f28..51fe0211d6f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.14.1rc2 +current_version = 0.14.1 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d2bec49ca7..788d91b9557 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## dbt 0.14.1 (Currently unreleased) +## dbt 0.14.1 (September 3, 2019) ### Overview @@ -6,7 +6,7 @@ This is primarily a bugfix release which contains a few minor improvements too. ### Breaking changes - The undocumented `macros` attribute was removed from the `graph` context variable ([#1615](https://github.com/fishtown-analytics/dbt/pull/1615)) - + ### Features: - Summarize warnings at the end of dbt runs ([#1597](https://github.com/fishtown-analytics/dbt/issues/1597), [#1654](https://github.com/fishtown-analytics/dbt/pull/1654)) - Speed up catalog generation on postgres by using avoiding use of the `information_schema` ([#1540](https://github.com/fishtown-analytics/dbt/pull/1540)) diff --git a/core/dbt/version.py b/core/dbt/version.py index 72532945c5e..a8c83a9ff68 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.1rc2' +__version__ = '0.14.1' installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index 6ac4ece0905..f87c4cca77e 100644 --- a/core/setup.py +++ b/core/setup.py @@ -9,7 +9,7 @@ def read(fname): package_name = "dbt-core" -package_version = "0.14.1rc2" +package_version = "0.14.1" 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 446146ac619..cfa2a848ed1 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.1rc2" +package_version = "0.14.1" 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 1db65826729..db56ed58b2f 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.1rc2" +package_version = "0.14.1" 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 3f61f3d158b..8b9f764fa14 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.1rc2" +package_version = "0.14.1" 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 7e718446a3b..a56938d63d2 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.1rc2" +package_version = "0.14.1" 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 e0bc63e8bb4..dfbeb76e5a1 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ package_name = "dbt" -package_version = "0.14.1rc2" +package_version = "0.14.1" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications."""