Skip to content

Commit d2e3480

Browse files
committed
Update README.md
1 parent 09ad904 commit d2e3480

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,27 @@ We're also looking forward to alternative implementations!
1010
To depend on scala-xml in SBT, add something like this to your build.sbt:
1111

1212
```
13-
libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0-RC2"
13+
libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0.0-RC6"
1414
```
1515

1616
(Assuming you're using a `scalaVersion` for which a scala-xml is published.
17-
The first 2.11 milestone for which this is true is 2.11.0-M4.)
17+
The first 2.11 milestone for which this is true is 2.11.0-M4.
18+
The current milestone is 2.11.0-M6.)
1819

1920
To support multiple Scala versions:
2021

2122
- SBT 0.12:
2223
```
2324
libraryDependencies <++= (scalaVersion) { sVer =>
24-
if (sVer startsWith "2.11") Seq("org.scala-lang.modules" %% "scala-xml" % "1.0-RC2")
25+
if (sVer startsWith "2.11") Seq("org.scala-lang.modules" %% "scala-xml" % "1.0.0-RC6")
2526
else Seq.empty
2627
}
2728
```
2829

2930
- SBT 0.13:
3031
```
3132
libraryDependencies ++= (
32-
if (scalaVersion.value startsWith "2.11") Seq("org.scala-lang.modules" %% "scala-xml" % "1.0-RC2")
33+
if (scalaVersion.value startsWith "2.11") Seq("org.scala-lang.modules" %% "scala-xml" % "1.0.0-RC6")
3334
else Seq.empty
3435
)
3536
```

0 commit comments

Comments
 (0)