File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
1919SCALA_BINARY_VERSION : " 2.11"
2020SCALA_VERSION : " 2.11.7"
2121MESOS_VERSION : 1.0.0
Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ import com.typesafe.tools.mima.core.ProblemFilters._
3434 */
3535object 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
You can’t perform that action at this time.
0 commit comments