Skip to content

Commit 983f746

Browse files
committed
Update other files not touched by mvn versions plugin.
1 parent 778fa74 commit 983f746

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

docs/_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ include:
1414

1515
# These allow the documentation to be updated with newer releases
1616
# of Spark, Scala, and Mesos.
17-
SPARK_VERSION: 2.2.0-SNAPSHOT
18-
SPARK_VERSION_SHORT: 2.2.0
17+
SPARK_VERSION: 2.3.0-SNAPSHOT
18+
SPARK_VERSION_SHORT: 2.3.0
1919
SCALA_BINARY_VERSION: "2.11"
2020
SCALA_VERSION: "2.11.7"
2121
MESOS_VERSION: 1.0.0

project/MimaExcludes.scala

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ import com.typesafe.tools.mima.core.ProblemFilters._
3434
*/
3535
object MimaExcludes {
3636

37+
// Exclude rules for 2.3.x
38+
lazy val v23excludes = v22excludes ++ Seq(
39+
)
40+
3741
// Exclude rules for 2.2.x
3842
lazy val v22excludes = v21excludes ++ Seq(
3943
// [SPARK-19652][UI] Do auth checks for REST API access.
@@ -1003,6 +1007,7 @@ object MimaExcludes {
10031007
}
10041008

10051009
def excludes(version: String) = version match {
1010+
case v if v.startsWith("2.3") => v23excludes
10061011
case v if v.startsWith("2.2") => v22excludes
10071012
case v if v.startsWith("2.1") => v21excludes
10081013
case v if v.startsWith("2.0") => v20excludes

0 commit comments

Comments
 (0)