From 596a2c0baca66f800438dd18698171347171103e Mon Sep 17 00:00:00 2001 From: SangBin Cho Date: Mon, 8 Jun 2020 09:33:30 -0700 Subject: [PATCH] Bump up the version to 0.8.6 --- python/ray/__init__.py | 2 +- src/ray/raylet/main.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/ray/__init__.py b/python/ray/__init__.py index 2474893b3..7aafcda91 100644 --- a/python/ray/__init__.py +++ b/python/ray/__init__.py @@ -103,7 +103,7 @@ from ray import util # noqa: E402 # Replaced with the current commit when building the wheels. __commit__ = "{{RAY_COMMIT_SHA}}" -__version__ = "0.9.0.dev0" +__version__ = "0.8.6" __all__ = [ "jobs", diff --git a/src/ray/raylet/main.cc b/src/ray/raylet/main.cc index 24ddf0c78..566478040 100644 --- a/src/ray/raylet/main.cc +++ b/src/ray/raylet/main.cc @@ -86,7 +86,7 @@ int main(int argc, char *argv[]) { // Initialize stats. const ray::stats::TagsType global_tags = { {ray::stats::JobNameKey, "raylet"}, - {ray::stats::VersionKey, "0.9.0.dev0"}, + {ray::stats::VersionKey, "0.8.6"}, {ray::stats::NodeAddressKey, node_ip_address}}; ray::stats::Init(stat_address, global_tags, disable_stats, enable_stdout_exporter);