From f69cbd35d4e86f2a3c2ace875aaf8166edb69f5d Mon Sep 17 00:00:00 2001 From: Robert Nishihara Date: Mon, 26 Mar 2018 22:37:16 -0700 Subject: [PATCH] Bump version to 0.4.0. (#1745) --- python/ray/__init__.py | 2 +- python/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/ray/__init__.py b/python/ray/__init__.py index 335485c31..40ee986ce 100644 --- a/python/ray/__init__.py +++ b/python/ray/__init__.py @@ -61,7 +61,7 @@ from ray.actor import method # noqa: E402 # Ray version string. TODO(rkn): This is also defined separately in setup.py. # Fix this. -__version__ = "0.3.1" +__version__ = "0.4.0" __all__ = ["error_info", "init", "connect", "disconnect", "get", "put", "wait", "remote", "log_event", "log_span", "flush_log", "actor", "method", diff --git a/python/setup.py b/python/setup.py index 5a245372d..093c73917 100644 --- a/python/setup.py +++ b/python/setup.py @@ -114,7 +114,7 @@ class BinaryDistribution(Distribution): setup(name="ray", # The version string is also in __init__.py. TODO(pcm): Fix this. - version="0.3.1", + version="0.4.0", packages=find_packages(), cmdclass={"build_ext": build_ext}, # The BinaryDistribution argument triggers build_ext.