From efce49cfbcdde84de3a1f71130b38948bea47a49 Mon Sep 17 00:00:00 2001 From: Robert Nishihara Date: Mon, 26 Jun 2017 21:35:42 -0700 Subject: [PATCH] Bump version to 0.1.2 in preparation for uploading wheels to PyPI. (#700) --- 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 2ebf7d5f2..60ed81dfd 100644 --- a/python/ray/__init__.py +++ b/python/ray/__init__.py @@ -11,7 +11,7 @@ from ray.worker import global_state # Ray version string. TODO(rkn): This is also defined separately in setup.py. # Fix this. -__version__ = "0.1.1" +__version__ = "0.1.2" __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 6663e36a0..9ee34aece 100644 --- a/python/setup.py +++ b/python/setup.py @@ -59,7 +59,7 @@ class BinaryDistribution(Distribution): setup(name="ray", - version="0.1.1", + version="0.1.2", packages=find_packages(), cmdclass={"build_ext": build_ext}, # The BinaryDistribution argument triggers build_ext.