From 301e0b0db8801266da7bf389a414d4d40e97f1cb Mon Sep 17 00:00:00 2001 From: Robert Nishihara Date: Fri, 2 Jun 2017 19:17:39 -0700 Subject: [PATCH] Bump version to 0.1.1 in preparation for uploading wheels to PyPI. (#630) --- 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 240683227a9d..2ebf7d5f2208 100644 --- a/python/ray/__init__.py +++ b/python/ray/__init__.py @@ -11,7 +11,7 @@ # Ray version string. TODO(rkn): This is also defined separately in setup.py. # Fix this. -__version__ = "0.1.0" +__version__ = "0.1.1" __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 9f8c49c86817..029cf73dd7e2 100644 --- a/python/setup.py +++ b/python/setup.py @@ -58,7 +58,7 @@ def has_ext_modules(self): setup(name="ray", - version="0.1.0", + version="0.1.1", packages=find_packages(), cmdclass={"build_ext": build_ext}, # The BinaryDistribution argument triggers build_ext.