diff --git a/python/ray/__init__.py b/python/ray/__init__.py index f5c6fcbe0d53..39f34e144225 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 f87b1a46e0b6..0b30a0123010 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.