Skip to content

Commit daca7b2

Browse files
authored
version change for 2.44.1 (#51463)
for patch release Signed-off-by: Lonnie Liu <[email protected]>
1 parent 36bed82 commit daca7b2

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 = "2.44.0"
21+
RAY_VERSION = "2.44.1"
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.44.0</version>
9+
<version>2.44.1</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.44.0</version>
9+
<version>2.44.1</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.44.0</version>
8+
<version>2.44.1</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.44.0</project.version>
66+
<project.version>2.44.1</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.44.0</version>
9+
<version>2.44.1</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.44.0</version>
9+
<version>2.44.1</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.44.0</version>
9+
<version>2.44.1</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 = "2.44.0"
3+
version = "2.44.1"
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[] = "2.44.0";
67+
constexpr char kRayVersion[] = "2.44.1";
6868

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

0 commit comments

Comments
 (0)