aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorgatorsmile <gatorsmile@gmail.com>2018-01-13 00:37:59 +0800
committerWenchen Fan <wenchen@databricks.com>2018-01-13 00:37:59 +0800
commit651f76153f5e9b185aaf593161d40cabe7994fea (patch)
tree9e7a042981750bf2534fd7f9959dd86a0802cf93 /project
parentf5300fbbe370af3741560f67bfb5ae6f0b0f7bb5 (diff)
[SPARK-23028] Bump master branch version to 2.4.0-SNAPSHOT
## What changes were proposed in this pull request? This patch bumps the master branch version to `2.4.0-SNAPSHOT`. ## How was this patch tested? N/A Author: gatorsmile <gatorsmile@gmail.com> Closes #20222 from gatorsmile/bump24.
Diffstat (limited to 'project')
-rw-r--r--project/MimaExcludes.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 3b452f35c5..32eb31f495 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -34,6 +34,10 @@ import com.typesafe.tools.mima.core.ProblemFilters._
*/
object MimaExcludes {
+ // Exclude rules for 2.4.x
+ lazy val v24excludes = v23excludes ++ Seq(
+ )
+
// Exclude rules for 2.3.x
lazy val v23excludes = v22excludes ++ Seq(
// [SPARK-22897] Expose stageAttemptId in TaskContext
@@ -1082,6 +1086,7 @@ object MimaExcludes {
}
def excludes(version: String) = version match {
+ case v if v.startsWith("2.4") => v24excludes
case v if v.startsWith("2.3") => v23excludes
case v if v.startsWith("2.2") => v22excludes
case v if v.startsWith("2.1") => v21excludes