diff --git a/build-docker.sh b/build-docker.sh index e662a3423..27e637867 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-1.11.0rc0-cp37-cp37m-manylinux2014_x86_64.whl" +WHEEL_URL="https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-1.11.0rc1-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 bb9d90392..a0287fbff 100644 --- a/java/api/pom_template.xml +++ b/java/api/pom_template.xml @@ -6,7 +6,7 @@ io.ray ray-superpom - 1.11.0rc0 + 1.11.0rc1 4.0.0 diff --git a/java/performance_test/pom_template.xml b/java/performance_test/pom_template.xml index 3f6ccb9ed..ba93d5f97 100644 --- a/java/performance_test/pom_template.xml +++ b/java/performance_test/pom_template.xml @@ -6,7 +6,7 @@ io.ray ray-superpom - 1.11.0rc0 + 1.11.0rc1 4.0.0 diff --git a/java/pom.xml b/java/pom.xml index 8219f0f08..8a21365fb 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -5,7 +5,7 @@ 4.0.0 io.ray ray-superpom - 1.11.0rc0 + 1.11.0rc1 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 - 1.11.0rc0 + 1.11.0rc1 diff --git a/java/runtime/pom_template.xml b/java/runtime/pom_template.xml index 6ea96ebe4..f32d3e905 100644 --- a/java/runtime/pom_template.xml +++ b/java/runtime/pom_template.xml @@ -6,7 +6,7 @@ io.ray ray-superpom - 1.11.0rc0 + 1.11.0rc1 4.0.0 diff --git a/java/serve/pom_template.xml b/java/serve/pom_template.xml index be770c308..1befef21b 100644 --- a/java/serve/pom_template.xml +++ b/java/serve/pom_template.xml @@ -6,7 +6,7 @@ io.ray ray-superpom - 1.11.0rc0 + 1.11.0rc1 4.0.0 diff --git a/java/test/pom_template.xml b/java/test/pom_template.xml index af87625d0..37b38a6a5 100644 --- a/java/test/pom_template.xml +++ b/java/test/pom_template.xml @@ -6,7 +6,7 @@ io.ray ray-superpom - 1.11.0rc0 + 1.11.0rc1 4.0.0 diff --git a/python/ray/__init__.py b/python/ray/__init__.py index 694d6b7ee..521140c54 100644 --- a/python/ray/__init__.py +++ b/python/ray/__init__.py @@ -86,7 +86,7 @@ del _configure_system # Replaced with the current commit when building the wheels. __commit__ = "{{RAY_COMMIT_SHA}}" -__version__ = "1.11.0rc0" +__version__ = "1.11.0rc1" import ray._raylet # noqa: E402 diff --git a/src/ray/common/constants.h b/src/ray/common/constants.h index 2ad5fa15f..c1357f7b2 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[] = "1.11.0rc0"; +constexpr char kRayVersion[] = "1.11.0rc1";