Skip to content

Commit c440010

Browse files
robertnishiharapcmoritz
authored andcommitted
Bump version to 0.1.0. (#581)
1 parent 40b96b0 commit c440010

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

python/ray/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
from ray.worker import SCRIPT_MODE, WORKER_MODE, PYTHON_MODE, SILENT_MODE
1111
from ray.worker import global_state
1212

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

1617
__all__ = ["register_class", "error_info", "init", "connect", "disconnect",
1718
"get", "put", "wait", "remote", "log_event", "log_span",

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def run(self):
3131
}
3232

3333
setup(name="ray",
34-
version="0.0.1",
34+
version="0.1.0",
3535
packages=find_packages(),
3636
package_data=package_data,
3737
cmdclass={"install": install},

0 commit comments

Comments
 (0)