Skip to content

Commit f5328b4

Browse files
committed
Preparing Spark release v4.2.0-preview4-rc1
1 parent a074c9a commit f5328b4

File tree

50 files changed

+53
-53
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+53
-53
lines changed

R/pkg/R/sparkR.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,8 +455,8 @@ sparkR.session <- function(
455455

456456
# Check if version number of SparkSession matches version number of SparkR package
457457
jvmVersion <- callJMethod(sparkSession, "version")
458-
# Remove -SNAPSHOT from jvm versions
459-
jvmVersionStrip <- gsub("-SNAPSHOT", "", jvmVersion, fixed = TRUE)
458+
# Remove -preview4 from jvm versions
459+
jvmVersionStrip <- gsub("-preview4", "", jvmVersion, fixed = TRUE)
460460
rPackageVersion <- paste0(packageVersion("SparkR"))
461461

462462
if (jvmVersionStrip != rPackageVersion) {

assembly/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent_2.13</artifactId>
24-
<version>4.2.0-SNAPSHOT</version>
24+
<version>4.2.0-preview4</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

common/kvstore/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.spark</groupId>
2424
<artifactId>spark-parent_2.13</artifactId>
25-
<version>4.2.0-SNAPSHOT</version>
25+
<version>4.2.0-preview4</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

common/network-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.spark</groupId>
2424
<artifactId>spark-parent_2.13</artifactId>
25-
<version>4.2.0-SNAPSHOT</version>
25+
<version>4.2.0-preview4</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

common/network-shuffle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.spark</groupId>
2424
<artifactId>spark-parent_2.13</artifactId>
25-
<version>4.2.0-SNAPSHOT</version>
25+
<version>4.2.0-preview4</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

common/network-yarn/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.spark</groupId>
2424
<artifactId>spark-parent_2.13</artifactId>
25-
<version>4.2.0-SNAPSHOT</version>
25+
<version>4.2.0-preview4</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

common/sketch/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.spark</groupId>
2424
<artifactId>spark-parent_2.13</artifactId>
25-
<version>4.2.0-SNAPSHOT</version>
25+
<version>4.2.0-preview4</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

common/tags/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.spark</groupId>
2424
<artifactId>spark-parent_2.13</artifactId>
25-
<version>4.2.0-SNAPSHOT</version>
25+
<version>4.2.0-preview4</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

common/unsafe/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.spark</groupId>
2424
<artifactId>spark-parent_2.13</artifactId>
25-
<version>4.2.0-SNAPSHOT</version>
25+
<version>4.2.0-preview4</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

common/utils-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.spark</groupId>
2424
<artifactId>spark-parent_2.13</artifactId>
25-
<version>4.2.0-SNAPSHOT</version>
25+
<version>4.2.0-preview4</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

0 commit comments

Comments
 (0)