Skip to content

Commit bece652

Browse files
authored
[release] change version to 2.43.0 (#50831)
getting ready for release. Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
1 parent 6ae4cca commit bece652

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

ci/ray_ci/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
GLOBAL_CONFIG_FILE = (
1919
os.environ.get("RAYCI_GLOBAL_CONFIG") or "ci/ray_ci/oss_config.yaml"
2020
)
21-
RAY_VERSION = "3.0.0.dev0"
21+
RAY_VERSION = "2.43.0"
2222

2323

2424
def ci_init() -> None:

java/api/pom_template.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.ray</groupId>
88
<artifactId>ray-superpom</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.43.0</version>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

java/performance_test/pom_template.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.ray</groupId>
88
<artifactId>ray-superpom</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.43.0</version>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

java/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>io.ray</groupId>
77
<artifactId>ray-superpom</artifactId>
8-
<version>2.0.0-SNAPSHOT</version>
8+
<version>2.43.0</version>
99
<packaging>pom</packaging>
1010
<name>Ray Project Parent POM</name>
1111
<description>An open source framework that provides a simple, universal API for building distributed applications.
@@ -63,7 +63,7 @@
6363
<properties>
6464
<java.version>1.8</java.version>
6565
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
66-
<project.version>2.0.0-SNAPSHOT</project.version>
66+
<project.version>2.43.0</project.version>
6767
</properties>
6868

6969
<dependencyManagement>

java/runtime/pom_template.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.ray</groupId>
88
<artifactId>ray-superpom</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.43.0</version>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

java/serve/pom_template.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.ray</groupId>
88
<artifactId>ray-superpom</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.43.0</version>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

java/test/pom_template.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.ray</groupId>
88
<artifactId>ray-superpom</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.43.0</version>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

python/ray/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Replaced with the current commit when building the wheels.
22
commit = "{{RAY_COMMIT_SHA}}"
3-
version = "3.0.0.dev0"
3+
version = "2.43.0"
44

55
if __name__ == "__main__":
66
print("%s %s" % (version, commit))

src/ray/common/constants.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ constexpr int kMessagePackOffset = 9;
6464
constexpr char kSetupWorkerFilename[] = "setup_worker.py";
6565

6666
/// The version of Ray
67-
constexpr char kRayVersion[] = "3.0.0.dev0";
67+
constexpr char kRayVersion[] = "2.43.0";
6868

6969
/*****************************/
7070
/* ENV labels for autoscaler */

0 commit comments

Comments
 (0)