Skip to content

Commit 076fbb2

Browse files
committed
Release prep, support sbt 1.2.8 again
1 parent 63596d8 commit 076fbb2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ scala: 2.12.10
44

55
jobs:
66
include:
7-
- { script: sbt mimaReportBinaryIssues test IntegrationTest/test }
7+
- { script: "sbt mimaReportBinaryIssues test IntegrationTest/test
8+
'set sbtplugin/scriptedSbt := \"1.2.8\"' 'scripted sbt-mima-plugin/minimal'" }
89
- { name: testFunctional 2.11, script: sbt -Dmima.testScalaVersion=2.11.12 testFunctional }
910
- { name: testFunctional 2.12, script: sbt -Dmima.testScalaVersion=2.12.10 testFunctional }
1011
- { name: testFunctional 2.13, script: sbt -Dmima.testScalaVersion=2.13.1 testFunctional }

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,12 @@ source compatibility.
3636

3737
## Usage
3838

39-
The latest version of MiMa's sbt plugin supports sbt 1.3.0+.
40-
Use v0.6.0 for sbt 1.0.x - 1.2.x, and v0.3.0 for sbt 0.13.x.
39+
MiMa's sbt plugin supports sbt 1.x only. Use v0.3.0 for sbt 0.13.x.
4140

4241
To use it add the following to your `project/plugins.sbt` file:
4342

4443
```
45-
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.6.1")
44+
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.6.2")
4645
```
4746

4847
Add the following to your `build.sbt` file:

sbtplugin/src/main/scala/com/typesafe/tools/mima/plugin/MimaKeys.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package com.typesafe.tools.mima
22
package plugin
33

44
import com.typesafe.tools.mima.core.{ Problem, ProblemFilter }
5-
import sbt._
5+
import sbt.{ File, ModuleID, settingKey, taskKey } // no sbt._, to avoid 1.3+ only singleFileJsonFormatter
66

77
object MimaKeys extends MimaKeys
88

0 commit comments

Comments
 (0)