aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorReynold Xin <rxin@databricks.com>2016-12-02 21:09:37 -0800
committerReynold Xin <rxin@databricks.com>2016-12-02 21:09:37 -0800
commitc7c7265950945a1b14165365600bdbfd540cf522 (patch)
treeb12df67c4e7af0b7a19f87041b3701ac4ee77434 /project
parenta9cbfc4f6a8db936215fcf64697d5b65f13f666e (diff)
downloadspark-c7c7265950945a1b14165365600bdbfd540cf522.tar.gz
spark-c7c7265950945a1b14165365600bdbfd540cf522.tar.bz2
spark-c7c7265950945a1b14165365600bdbfd540cf522.zip
[SPARK-18695] Bump master branch version to 2.2.0-SNAPSHOT
## What changes were proposed in this pull request? This patch bumps master branch version to 2.2.0-SNAPSHOT. ## How was this patch tested? N/A Author: Reynold Xin <rxin@databricks.com> Closes #16126 from rxin/SPARK-18695.
Diffstat (limited to 'project')
-rw-r--r--project/MimaExcludes.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index b113bbf803..7fed8cb008 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -34,6 +34,7 @@ import com.typesafe.tools.mima.core.ProblemFilters._
*/
object MimaExcludes {
+ // Exclude rules for 2.2.x
lazy val v22excludes = v21excludes ++ Seq(
// [SPARK-18663][SQL] Simplify CountMinSketch aggregate implementation
ProblemFilters.exclude[ReversedMissingMethodProblem]("org.apache.spark.util.sketch.CountMinSketch.toByteArray")
@@ -918,7 +919,7 @@ object MimaExcludes {
def excludes(version: String) = version match {
case v if v.startsWith("2.2") => v22excludes
- case v if v.startsWith("2.1") => v22excludes // TODO: Update this when we bump version to 2.2
+ case v if v.startsWith("2.1") => v21excludes
case v if v.startsWith("2.0") => v20excludes
case _ => Seq()
}