Skip to content

Commit 43c1f5d

Browse files
committed
Bump to 1.0-RC4, upgrade partest to 1.0-RC5
1 parent 1ce620d commit 43c1f5d

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

build.sbt

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

33
name := "scala-xml"
44

5-
version := "1.0-RC3"
5+
version := "1.0-RC4"
66

77
// standard stuff follows:
88
scalaVersion := "2.11.0-M5"
@@ -12,6 +12,7 @@ scalaVersion := "2.11.0-M5"
1212
// but don't rebuild scalacheck, so we don't want to rewire that dependency)
1313
scalaBinaryVersion := "2.11.0-M5"
1414

15+
1516
// don't use for doc scope, scaladoc warnings are not to be reckoned with
1617
scalacOptions in compile ++= Seq("-optimize", "-Xfatal-warnings", "-feature", "-deprecation", "-unchecked", "-Xlint")
1718

@@ -82,7 +83,10 @@ libraryDependencies += "org.scala-lang.modules" %% "scala-partest-interface" % "
8283

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

8791
fork in Test := true
8892

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.13.0-RC5
1+
sbt.version=0.13.0

0 commit comments

Comments
 (0)