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

Prepare for release 1.0.13 #52

Merged
merged 1 commit into from
Feb 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import VersionKeys._
import com.typesafe.tools.mima.core.{IncompatibleMethTypeProblem, ProblemFilters}
import com.typesafe.tools.mima.plugin.MimaKeys

scalaModuleSettings

name := "scala-partest"

version := "1.0.12-SNAPSHOT"
version := "1.0.13-SNAPSHOT"

scalaVersion := crossScalaVersions.value.head

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

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

mimaPreviousVersion := Some("1.0.10")
mimaPreviousVersion := Some("1.0.11")
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("org.scala-lang.modules" % "scala-module-plugin" % "1.0.3")
addSbtPlugin("org.scala-lang.modules" % "scala-module-plugin" % "1.0.4")
2 changes: 2 additions & 0 deletions src/main/scala/scala/tools/partest/nest/DirectCompiler.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ class ExtConsoleReporter(settings: Settings, val writer: PrintWriter) extends Co
}

class TestSettings(cp: String, error: String => Unit) extends Settings(error) {
@deprecated("Use primary constructor", "1.0.12")
def this(cp: String) = this(cp, _ => ())
nowarnings.value = false
encoding.value = "UTF-8"
classpath.value = cp
Expand Down