Skip to content

Commit a0f5d3f

Browse files
jiangxb1987HyukjinKwon
authored andcommitted
Prepare Spark release 3.0.0-preview
1 parent a43b966 commit a0f5d3f

File tree

42 files changed

+42
-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.

42 files changed

+42
-53
lines changed

R/pkg/R/sparkR.R

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -334,17 +334,6 @@ sparkR.session <- function(
334334
assign(".sparkRsession", sparkSession, envir = .sparkREnv)
335335
}
336336

337-
# Check if version number of SparkSession matches version number of SparkR package
338-
jvmVersion <- callJMethod(sparkSession, "version")
339-
# Remove -SNAPSHOT from jvm versions
340-
jvmVersionStrip <- gsub("-SNAPSHOT", "", jvmVersion)
341-
rPackageVersion <- paste0(packageVersion("SparkR"))
342-
343-
if (jvmVersionStrip != rPackageVersion) {
344-
warning(paste("Version mismatch between Spark JVM and SparkR package. JVM version was",
345-
jvmVersion, ", while R package version was", rPackageVersion))
346-
}
347-
348337
sparkSession
349338
}
350339

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.12</artifactId>
24-
<version>3.0.0-SNAPSHOT</version>
24+
<version>3.0.0-preview</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.12</artifactId>
25-
<version>3.0.0-SNAPSHOT</version>
25+
<version>3.0.0-preview</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.12</artifactId>
25-
<version>3.0.0-SNAPSHOT</version>
25+
<version>3.0.0-preview</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.12</artifactId>
25-
<version>3.0.0-SNAPSHOT</version>
25+
<version>3.0.0-preview</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.12</artifactId>
25-
<version>3.0.0-SNAPSHOT</version>
25+
<version>3.0.0-preview</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.12</artifactId>
25-
<version>3.0.0-SNAPSHOT</version>
25+
<version>3.0.0-preview</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.12</artifactId>
25-
<version>3.0.0-SNAPSHOT</version>
25+
<version>3.0.0-preview</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.12</artifactId>
25-
<version>3.0.0-SNAPSHOT</version>
25+
<version>3.0.0-preview</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

core/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.12</artifactId>
24-
<version>3.0.0-SNAPSHOT</version>
24+
<version>3.0.0-preview</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

0 commit comments

Comments
 (0)