Skip to content

Commit

Permalink
Bump version: 0.14.0 → 0.14.1a1
Browse files Browse the repository at this point in the history
  • Loading branch information
cmcarthur committed Aug 13, 2019
1 parent da7c950 commit db20337
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.14.0
current_version = 0.14.1a1
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
2 changes: 1 addition & 1 deletion core/dbt/version.py
Expand Up @@ -56,5 +56,5 @@ def get_version_information():
.format(version_msg))


__version__ = '0.14.0'
__version__ = '0.14.1a1'
installed = get_installed_version()
2 changes: 1 addition & 1 deletion core/setup.py
Expand Up @@ -9,7 +9,7 @@ def read(fname):


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

Expand Down
2 changes: 1 addition & 1 deletion plugins/bigquery/setup.py
Expand Up @@ -4,7 +4,7 @@
import os

package_name = "dbt-bigquery"
package_version = "0.14.0"
package_version = "0.14.1a1"
description = """The bigquery adapter plugin for dbt (data build tool)"""

this_directory = os.path.abspath(os.path.dirname(__file__))
Expand Down
2 changes: 1 addition & 1 deletion plugins/postgres/setup.py
Expand Up @@ -4,7 +4,7 @@
import os

package_name = "dbt-postgres"
package_version = "0.14.0"
package_version = "0.14.1a1"
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 plugins/redshift/setup.py
Expand Up @@ -4,7 +4,7 @@
import os

package_name = "dbt-redshift"
package_version = "0.14.0"
package_version = "0.14.1a1"
description = """The redshift adapter plugin for dbt (data build tool)"""

this_directory = os.path.abspath(os.path.dirname(__file__))
Expand Down
2 changes: 1 addition & 1 deletion plugins/snowflake/setup.py
Expand Up @@ -4,7 +4,7 @@
import os

package_name = "dbt-snowflake"
package_version = "0.14.0"
package_version = "0.14.1a1"
description = """The snowflake adapter 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
Expand Up @@ -10,7 +10,7 @@


package_name = "dbt"
package_version = "0.14.0"
package_version = "0.14.1a1"
description = """With dbt, data analysts and engineers can build analytics \
the way engineers build applications."""

Expand Down

0 comments on commit db20337

Please sign in to comment.