From 5708e75978413e46c703e44f43fd89769f3c148b Mon Sep 17 00:00:00 2001 From: Cuong Nguyen <128072568+can-anyscale@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:51:14 -0700 Subject: [PATCH] ray 2.20.0 version change (#45040) ray 2.20.0 release branch version changes Signed-off-by: can --- ci/ray_ci/utils.py | 2 +- java/api/pom_template.xml | 2 +- java/performance_test/pom_template.xml | 2 +- java/pom.xml | 4 ++-- java/runtime/pom_template.xml | 2 +- java/serve/pom_template.xml | 2 +- java/test/pom_template.xml | 2 +- python/ray/_version.py | 2 +- src/ray/common/constants.h | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ci/ray_ci/utils.py b/ci/ray_ci/utils.py index a9d6159aa8a3..b28f1d4dfcfe 100644 --- a/ci/ray_ci/utils.py +++ b/ci/ray_ci/utils.py @@ -18,7 +18,7 @@ GLOBAL_CONFIG_FILE = ( os.environ.get("RAYCI_GLOBAL_CONFIG") or "ci/ray_ci/oss_config.yaml" ) -RAY_VERSION = "3.0.0.dev0" +RAY_VERSION = "2.20.0" def ci_init() -> None: diff --git a/java/api/pom_template.xml b/java/api/pom_template.xml index a7fdeb6bf23b..587967e6709d 100644 --- a/java/api/pom_template.xml +++ b/java/api/pom_template.xml @@ -6,7 +6,7 @@ io.ray ray-superpom - 2.0.0-SNAPSHOT + 2.20.0 4.0.0 diff --git a/java/performance_test/pom_template.xml b/java/performance_test/pom_template.xml index fce0b10f8837..05475b1ae943 100644 --- a/java/performance_test/pom_template.xml +++ b/java/performance_test/pom_template.xml @@ -6,7 +6,7 @@ io.ray ray-superpom - 2.0.0-SNAPSHOT + 2.20.0 4.0.0 diff --git a/java/pom.xml b/java/pom.xml index 958f735666d6..9c07e4093a3e 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -5,7 +5,7 @@ 4.0.0 io.ray ray-superpom - 2.0.0-SNAPSHOT + 2.20.0 pom Ray Project Parent POM An open source framework that provides a simple, universal API for building distributed applications. @@ -63,7 +63,7 @@ 1.8 UTF-8 - 2.0.0-SNAPSHOT + 2.20.0 diff --git a/java/runtime/pom_template.xml b/java/runtime/pom_template.xml index 69010485406e..07ed12e3e1c6 100644 --- a/java/runtime/pom_template.xml +++ b/java/runtime/pom_template.xml @@ -6,7 +6,7 @@ io.ray ray-superpom - 2.0.0-SNAPSHOT + 2.20.0 4.0.0 diff --git a/java/serve/pom_template.xml b/java/serve/pom_template.xml index 9df520f0d2bc..ed733f6bbe12 100644 --- a/java/serve/pom_template.xml +++ b/java/serve/pom_template.xml @@ -6,7 +6,7 @@ io.ray ray-superpom - 2.0.0-SNAPSHOT + 2.20.0 4.0.0 diff --git a/java/test/pom_template.xml b/java/test/pom_template.xml index 2d46e93b4371..93c42fef5b68 100644 --- a/java/test/pom_template.xml +++ b/java/test/pom_template.xml @@ -6,7 +6,7 @@ io.ray ray-superpom - 2.0.0-SNAPSHOT + 2.20.0 4.0.0 diff --git a/python/ray/_version.py b/python/ray/_version.py index ebc9a8b52868..1f73766c0f92 100644 --- a/python/ray/_version.py +++ b/python/ray/_version.py @@ -1,6 +1,6 @@ # Replaced with the current commit when building the wheels. commit = "{{RAY_COMMIT_SHA}}" -version = "3.0.0.dev0" +version = "2.20.0" if __name__ == "__main__": print("%s %s" % (version, commit)) diff --git a/src/ray/common/constants.h b/src/ray/common/constants.h index 31e68c11339b..f2f8d6c084af 100644 --- a/src/ray/common/constants.h +++ b/src/ray/common/constants.h @@ -64,7 +64,7 @@ constexpr int kMessagePackOffset = 9; constexpr char kSetupWorkerFilename[] = "setup_worker.py"; /// The version of Ray -constexpr char kRayVersion[] = "3.0.0.dev0"; +constexpr char kRayVersion[] = "2.20.0"; /*****************************/ /* ENV labels for autoscaler */