Skip to content

Commit 36d618f

Browse files
committed
Bump to 1.0-RC2, scala%2.11.0-M5, partest%1.0-RC5
1 parent df634fe commit 36d618f

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

build.sbt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ organization := "org.scala-lang.modules"
22

33
name := "scala-parser-combinators"
44

5-
version := "1.0-RC1"
5+
version := "1.0-RC2"
66

7-
scalaVersion := "2.11.0-M4"
7+
scalaVersion := "2.11.0-M5"
88

99
// NOTE: not necessarily equal to scalaVersion
1010
// (e.g., during PR validation, we override scalaVersion to validate,
1111
// but don't rebuild scalacheck, so we don't want to rewire that dependency)
12-
scalaBinaryVersion := "2.11.0-M4"
12+
scalaBinaryVersion := "2.11.0-M5"
1313

1414
// don't use for doc scope, scaladoc warnings are not to be reckoned with
1515
scalacOptions in compile ++= Seq("-optimize", "-Xfatal-warnings", "-feature", "-deprecation", "-unchecked", "-Xlint")
@@ -81,7 +81,10 @@ libraryDependencies += "org.scala-lang.modules" %% "scala-partest-interface" % "
8181

8282
// the actual partest the interface calls into -- must be binary version close enough to ours
8383
// so that it can link to the compiler/lib we're using (testing)
84-
libraryDependencies += "org.scala-lang.modules" %% "scala-partest" % "1.0-RC2" % "test"
84+
libraryDependencies += "org.scala-lang.modules" %% "scala-partest" % "1.0-RC5" % "test"
85+
86+
// necessary for partest -- see comments in its build.sbt
87+
conflictWarning ~= { _.copy(failOnConflict = false) }
8588

8689
fork in Test := true
8790

project/build.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version=0.13.0

0 commit comments

Comments
 (0)