Skip to content

Commit

Permalink
Update ray version from 1.12.0rc1 to 1.12.0 (#23806)
Browse files Browse the repository at this point in the history
  • Loading branch information
jianoaix authored Apr 8, 2022
1 parent eb0bb6a commit f18fc31
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 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.12.0rc1-cp37-cp37m-manylinux2014_x86_64.whl"
WHEEL_URL="https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-1.12.0-cp37-cp37m-manylinux2014_x86_64.whl"
PYTHON_VERSION="3.7.7"


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.12.0rc1</version>
<version>1.12.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/performance_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.12.0rc1</version>
<version>1.12.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 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.12.0rc1</version>
<version>1.12.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,7 +63,7 @@
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.version>1.12.0rc1</project.version>
<project.version>1.12.0</project.version>
</properties>

<dependencyManagement>
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.12.0rc1</version>
<version>1.12.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.12.0rc1</version>
<version>1.12.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.12.0rc1</version>
<version>1.12.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 @@ -103,7 +103,7 @@ def _configure_system():

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

import ray._raylet # noqa: E402

Expand Down
2 changes: 1 addition & 1 deletion release/ray_release/tests/test_wheels.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def testGetRayVersion(self):

with patch("urllib.request.urlopen", lambda _: content):
version = get_ray_version(DEFAULT_REPO, commit="fake")
self.assertEqual(version, "1.12.0rc1")
self.assertEqual(version, "1.12.0")

with patch("urllib.request.urlopen", lambda _: []), self.assertRaises(
RayWheelsNotFoundError
Expand Down
2 changes: 1 addition & 1 deletion src/ray/common/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ constexpr int kMessagePackOffset = 9;
constexpr char kSetupWorkerFilename[] = "setup_worker.py";

/// The version of Ray
constexpr char kRayVersion[] = "1.12.0rc1";
constexpr char kRayVersion[] = "1.12.0";

0 comments on commit f18fc31

Please sign in to comment.