Skip to content

Commit

Permalink
[release] change version to 2.12.0
Browse files Browse the repository at this point in the history
Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
  • Loading branch information
aslonnie committed Apr 22, 2024
1 parent 7c9209f commit 549c4b7
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ci/ray_ci/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.12.0"


def ci_init() -> None:
Expand Down
2 changes: 1 addition & 1 deletion java/api/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.12.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/performance_test/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.12.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.12.0</version>
<packaging>pom</packaging>
<name>Ray Project Parent POM</name>
<description>An open source framework that provides a simple, universal API for building distributed applications.
Expand Down Expand Up @@ -63,7 +63,7 @@
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.version>2.0.0-SNAPSHOT</project.version>
<project.version>2.12.0</project.version>
</properties>

<dependencyManagement>
Expand Down
2 changes: 1 addition & 1 deletion java/runtime/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.12.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/serve/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.12.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/test/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.12.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion python/ray/_version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Replaced with the current commit when building the wheels.
commit = "{{RAY_COMMIT_SHA}}"
version = "3.0.0.dev0"
version = "2.12.0"

if __name__ == "__main__":
print("%s %s" % (version, commit))
2 changes: 1 addition & 1 deletion src/ray/common/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.12.0";

/*****************************/
/* ENV labels for autoscaler */
Expand Down

0 comments on commit 549c4b7

Please sign in to comment.