Skip to content
This repository was archived by the owner on Sep 8, 2022. It is now read-only.

Commit 80e4315

Browse files
committed
Merge pull request #52 from retronym/release/1.0.12
Prepare for release 1.0.12
2 parents 87efa33 + 330be8f commit 80e4315

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

build.sbt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import VersionKeys._
2+
import com.typesafe.tools.mima.core.{IncompatibleMethTypeProblem, ProblemFilters}
3+
import com.typesafe.tools.mima.plugin.MimaKeys
24

35
scalaModuleSettings
46

57
name := "scala-partest"
68

7-
version := "1.0.12-SNAPSHOT"
9+
version := "1.0.13-SNAPSHOT"
810

911
scalaVersion := crossScalaVersions.value.head
1012

@@ -57,4 +59,4 @@ libraryDependencies += "org.scala-lang" % "scala-reflect" % sca
5759

5860
libraryDependencies += "org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided" intransitive()
5961

60-
mimaPreviousVersion := Some("1.0.10")
62+
mimaPreviousVersion := Some("1.0.11")

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("org.scala-lang.modules" % "scala-module-plugin" % "1.0.3")
1+
addSbtPlugin("org.scala-lang.modules" % "scala-module-plugin" % "1.0.4")

src/main/scala/scala/tools/partest/nest/DirectCompiler.scala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ class ExtConsoleReporter(settings: Settings, val writer: PrintWriter) extends Co
2020
}
2121

2222
class TestSettings(cp: String, error: String => Unit) extends Settings(error) {
23+
@deprecated("Use primary constructor", "1.0.12")
24+
def this(cp: String) = this(cp, _ => ())
2325
nowarnings.value = false
2426
encoding.value = "UTF-8"
2527
classpath.value = cp

0 commit comments

Comments
 (0)