Skip to content

Commit

Permalink
Bump version to 0.1.0. (#581)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertnishihara authored and pcmoritz committed May 21, 2017
1 parent 40b96b0 commit c440010
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions python/ray/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
from ray.worker import SCRIPT_MODE, WORKER_MODE, PYTHON_MODE, SILENT_MODE
from ray.worker import global_state

# Ray version string
__version__ = "0.01"
# Ray version string. TODO(rkn): This is also defined separately in setup.py.
# Fix this.
__version__ = "0.1.0"

__all__ = ["register_class", "error_info", "init", "connect", "disconnect",
"get", "put", "wait", "remote", "log_event", "log_span",
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def run(self):
}

setup(name="ray",
version="0.0.1",
version="0.1.0",
packages=find_packages(),
package_data=package_data,
cmdclass={"install": install},
Expand Down

0 comments on commit c440010

Please sign in to comment.