Version bump

This commit is contained in:
Alex Wu
2021-01-25 19:37:09 -08:00
parent 840987c7af
commit c589de6bc8
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ set -x
GPU=""
BASE_IMAGE="ubuntu:focal"
WHEEL_URL="https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-2.0.0.dev0-cp37-cp37m-manylinux2014_x86_64.whl"
WHEEL_URL="https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-1.2.0-cp37-cp37m-manylinux2014_x86_64.whl"
PYTHON_VERSION=""
while [[ $# -gt 0 ]]
+1 -1
View File
@@ -92,7 +92,7 @@ from ray import util # noqa: E402
# Replaced with the current commit when building the wheels.
__commit__ = "{{RAY_COMMIT_SHA}}"
__version__ = "2.0.0.dev0"
__version__ = "1.2.0"
__all__ = [
"__version__",
+1 -1
View File
@@ -155,7 +155,7 @@ CoreWorkerProcess::CoreWorkerProcess(const CoreWorkerOptions &options)
RAY_LOG(DEBUG) << "Stats setup in core worker.";
// Initialize stats in core worker global tags.
const ray::stats::TagsType global_tags = {{ray::stats::ComponentKey, "core_worker"},
{ray::stats::VersionKey, "2.0.0.dev0"}};
{ray::stats::VersionKey, "1.2.0"}};
// NOTE(lingxuan.zlx): We assume RayConfig is initialized before it's used.
// RayConfig is generated in Java_io_ray_runtime_RayNativeRuntime_nativeInitialize
+1 -1
View File
@@ -94,7 +94,7 @@ int main(int argc, char *argv[]) {
RayConfig::instance().initialize(config);
const ray::stats::TagsType global_tags = {
{ray::stats::ComponentKey, "gcs_server"},
{ray::stats::VersionKey, "2.0.0.dev0"},
{ray::stats::VersionKey, "1.2.0"},
{ray::stats::NodeAddressKey, node_ip_address}};
ray::stats::Init(global_tags, metrics_agent_port);
+1 -1
View File
@@ -245,7 +245,7 @@ int main(int argc, char *argv[]) {
// Initialize stats.
const ray::stats::TagsType global_tags = {
{ray::stats::ComponentKey, "raylet"},
{ray::stats::VersionKey, "2.0.0.dev0"},
{ray::stats::VersionKey, "1.2.0"},
{ray::stats::NodeAddressKey, node_ip_address}};
ray::stats::Init(global_tags, metrics_agent_port);