From 6e1de19cc202f44eb93ca3a78f29c5b8686a06ae Mon Sep 17 00:00:00 2001 From: Robert Nishihara Date: Tue, 28 Aug 2018 16:52:17 -0700 Subject: [PATCH] Bump version to 0.5.1. (#2755) --- 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 fe4881890..93518b439 100644 --- a/python/ray/__init__.py +++ b/python/ray/__init__.py @@ -62,7 +62,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.5.0" +__version__ = "0.5.1" __all__ = [ "error_info", "init", "connect", "disconnect", "get", "put", "wait", diff --git a/python/setup.py b/python/setup.py index 0bfddd6b5..d1bbaa82c 100644 --- a/python/setup.py +++ b/python/setup.py @@ -124,7 +124,7 @@ class BinaryDistribution(Distribution): setup( name="ray", # The version string is also in __init__.py. TODO(pcm): Fix this. - version="0.5.0", + version="0.5.1", packages=find_packages(), cmdclass={"build_ext": build_ext}, # The BinaryDistribution argument triggers build_ext.