From fdf069bd1de0072e7acb08956c44a7efd09f6b1b Mon Sep 17 00:00:00 2001 From: Philipp Moritz Date: Wed, 1 Nov 2017 20:41:24 -0700 Subject: [PATCH] update version to 0.2.2 (#1178) --- python/ray/__init__.py | 2 +- python/setup.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/python/ray/__init__.py b/python/ray/__init__.py index f5c6fcbe0d530..39f34e1442259 100644 --- a/python/ray/__init__.py +++ b/python/ray/__init__.py @@ -53,7 +53,7 @@ # Ray version string. TODO(rkn): This is also defined separately in setup.py. # Fix this. -__version__ = "0.2.1" +__version__ = "0.2.2" __all__ = ["error_info", "init", "connect", "disconnect", "get", "put", "wait", "remote", "log_event", "log_span", "flush_log", "actor", diff --git a/python/setup.py b/python/setup.py index f87b1a46e0b62..0b30a01230104 100644 --- a/python/setup.py +++ b/python/setup.py @@ -96,7 +96,9 @@ def has_ext_modules(self): setup(name="ray", - version="0.2.1", + # The version string is also in __init__.py + # TODO(pcm): Fix this + version="0.2.2", packages=find_packages(), cmdclass={"build_ext": build_ext}, # The BinaryDistribution argument triggers build_ext.