From c440010cbd7eaef3a19bda9701695240ad98ceb1 Mon Sep 17 00:00:00 2001 From: Robert Nishihara Date: Sat, 20 May 2017 23:25:01 -0700 Subject: [PATCH] Bump version to 0.1.0. (#581) --- python/ray/__init__.py | 5 +++-- python/setup.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/python/ray/__init__.py b/python/ray/__init__.py index 9683559e664e..3bcb3ada3eb8 100644 --- a/python/ray/__init__.py +++ b/python/ray/__init__.py @@ -10,8 +10,9 @@ from ray.worker import SCRIPT_MODE, WORKER_MODE, PYTHON_MODE, SILENT_MODE from ray.worker import global_state -# Ray version string -__version__ = "0.01" +# Ray version string. TODO(rkn): This is also defined separately in setup.py. +# Fix this. +__version__ = "0.1.0" __all__ = ["register_class", "error_info", "init", "connect", "disconnect", "get", "put", "wait", "remote", "log_event", "log_span", diff --git a/python/setup.py b/python/setup.py index 2968a5f29eb6..6d1250e284ee 100644 --- a/python/setup.py +++ b/python/setup.py @@ -31,7 +31,7 @@ def run(self): } setup(name="ray", - version="0.0.1", + version="0.1.0", packages=find_packages(), package_data=package_data, cmdclass={"install": install},