Skip to content

Commit

Permalink
change to ray version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jiaodong committed Jul 23, 2021
1 parent d3e8c71 commit ddad6a2
Show file tree
Hide file tree
Showing 21 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion build-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -x

GPU=""
BASE_IMAGE="ubuntu:focal"
WHEEL_URL="https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-1.5.0rc1-cp37-cp37m-manylinux2014_x86_64.whl"
WHEEL_URL="https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-1.5.0-cp37-cp37m-manylinux2014_x86_64.whl"
PYTHON_VERSION="3.7.7"


Expand Down
2 changes: 1 addition & 1 deletion java/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/api/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
6 changes: 3 additions & 3 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
<packaging>pom</packaging>
<name>Ray Project Parent POM</name>
<description>An open source framework that provides a simple, universal API for building distributed applications.
Expand Down Expand Up @@ -63,8 +63,8 @@
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<projetct.version>1.5.0rc1</projetct.version>
<projetct.version>1.5.0rc1</projetct.version>
<projetct.version>1.5.0</projetct.version>
<projetct.version>1.5.0</projetct.version>
</properties>

<dependencyManagement>
Expand Down
2 changes: 1 addition & 1 deletion java/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/runtime/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/serve/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/serve/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/test/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion python/ray/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def _configure_system():

# Replaced with the current commit when building the wheels.
__commit__ = "{{RAY_COMMIT_SHA}}"
__version__ = "1.5.0rc1"
__version__ = "1.5.0"

import ray._raylet # noqa: E402

Expand Down
2 changes: 1 addition & 1 deletion src/ray/core_worker/core_worker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,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, "1.5.0rc1"}};
{ray::stats::VersionKey, "1.5.0"}};

// NOTE(lingxuan.zlx): We assume RayConfig is initialized before it's used.
// RayConfig is generated in Java_io_ray_runtime_RayNativeRuntime_nativeInitialize
Expand Down
2 changes: 1 addition & 1 deletion src/ray/gcs/gcs_server/gcs_server_main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ int main(int argc, char *argv[]) {

const ray::stats::TagsType global_tags = {
{ray::stats::ComponentKey, "gcs_server"},
{ray::stats::VersionKey, "1.5.0rc1"},
{ray::stats::VersionKey, "1.5.0"},
{ray::stats::NodeAddressKey, node_ip_address}};
ray::stats::Init(global_tags, metrics_agent_port);

Expand Down
2 changes: 1 addition & 1 deletion src/ray/raylet/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ int main(int argc, char *argv[]) {
// Initialize stats.
const ray::stats::TagsType global_tags = {
{ray::stats::ComponentKey, "raylet"},
{ray::stats::VersionKey, "1.5.0rc1"},
{ray::stats::VersionKey, "1.5.0"},
{ray::stats::NodeAddressKey, node_ip_address}};
ray::stats::Init(global_tags, metrics_agent_port);

Expand Down
4 changes: 2 additions & 2 deletions streaming/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.ray</groupId>
<artifactId>ray-streaming</artifactId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
<packaging>pom</packaging>
<name>Ray Project Streaming Parent POM</name>
<description>A streaming framework built on ray</description>
Expand Down Expand Up @@ -63,7 +63,7 @@
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<projetct.version>1.5.0rc1</projetct.version>
<projetct.version>1.5.0</projetct.version>
<mockito.version>1.10.19</mockito.version>
<fst.version>2.57</fst.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion streaming/java/streaming-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>ray-streaming</artifactId>
<groupId>io.ray</groupId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion streaming/java/streaming-api/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>ray-streaming</artifactId>
<groupId>io.ray</groupId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion streaming/java/streaming-runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>ray-streaming</artifactId>
<groupId>io.ray</groupId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion streaming/java/streaming-runtime/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>ray-streaming</artifactId>
<groupId>io.ray</groupId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion streaming/java/streaming-state/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>ray-streaming</artifactId>
<groupId>io.ray</groupId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion streaming/java/streaming-state/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>ray-streaming</artifactId>
<groupId>io.ray</groupId>
<version>1.5.0rc1</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit ddad6a2

Please sign in to comment.