From 2e4490d736af802ff99796807691a34877955360 Mon Sep 17 00:00:00 2001 From: Kai Fricke Date: Thu, 19 May 2022 08:28:42 +0100 Subject: [PATCH] ray-1.x: Update version to 1.14.0.dev0 (#24930) To avoid confusing version numbers between this branch and the master branch, we should update the version to 1.14.0.dev0. --- build-docker.sh | 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/__init__.py | 2 +- src/ray/common/constants.h | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/build-docker.sh b/build-docker.sh index 020cdfabc..c110c1b2d 100755 --- a/build-docker.sh +++ b/build-docker.sh @@ -7,7 +7,7 @@ set -x GPU="" BASE_IMAGE="ubuntu:focal" -WHEEL_URL="https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-2.0.0.dev0-cp37-cp37m-manylinux2014_x86_64.whl" +WHEEL_URL="https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-1.14.0.dev0-cp37-cp37m-manylinux2014_x86_64.whl" PYTHON_VERSION="3.7.7" diff --git a/java/api/pom_template.xml b/java/api/pom_template.xml index a7fdeb6bf..9a28e4810 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 + 1.14.0-SNAPSHOT 4.0.0 diff --git a/java/performance_test/pom_template.xml b/java/performance_test/pom_template.xml index fce0b10f8..d87270e23 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 + 1.14.0-SNAPSHOT 4.0.0 diff --git a/java/pom.xml b/java/pom.xml index 6a5f4ad9f..040d1c5c9 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -5,7 +5,7 @@ 4.0.0 io.ray ray-superpom - 2.0.0-SNAPSHOT + 1.14.0-SNAPSHOT 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 + 1.14.0-SNAPSHOT diff --git a/java/runtime/pom_template.xml b/java/runtime/pom_template.xml index 690104854..aae9f2169 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 + 1.14.0-SNAPSHOT 4.0.0 diff --git a/java/serve/pom_template.xml b/java/serve/pom_template.xml index 9df520f0d..04a87b8e1 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 + 1.14.0-SNAPSHOT 4.0.0 diff --git a/java/test/pom_template.xml b/java/test/pom_template.xml index 2d46e93b4..37567c903 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 + 1.14.0-SNAPSHOT 4.0.0 diff --git a/python/ray/__init__.py b/python/ray/__init__.py index c6d30c76e..1bdc08237 100644 --- a/python/ray/__init__.py +++ b/python/ray/__init__.py @@ -110,7 +110,7 @@ del _configure_system # Replaced with the current commit when building the wheels. __commit__ = "{{RAY_COMMIT_SHA}}" -__version__ = "2.0.0.dev0" +__version__ = "1.14.0.dev0" import ray._raylet # noqa: E402 diff --git a/src/ray/common/constants.h b/src/ray/common/constants.h index f932f06da..215415027 100644 --- a/src/ray/common/constants.h +++ b/src/ray/common/constants.h @@ -52,4 +52,4 @@ constexpr int kMessagePackOffset = 9; constexpr char kSetupWorkerFilename[] = "setup_worker.py"; /// The version of Ray -constexpr char kRayVersion[] = "2.0.0.dev0"; +constexpr char kRayVersion[] = "1.14.0.dev0";