Skip to content

Commit 57669d8

Browse files
authored
Merge pull request #391 from SethTisue/post-2.3.0
bump version numbers, now that 2.3.0 is out
2 parents 3d7377f + b9ef52e commit 57669d8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Only the most commonly used APIs are supported; many are missing. Contributions
1717
To use this library, add the following to your `build.sbt`:
1818

1919
```
20-
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.2.0"
20+
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.3.0"
2121
```
2222

2323
All future versions will remain backwards binary compatible with 2.0.0. (The 1.0.0 release was withdrawn and should not be used.)
@@ -64,7 +64,7 @@ The `Collection213Upgrade` rewrite upgrades to the 2.13 collections without the
6464

6565
```scala
6666
// build.sbt
67-
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "2.2.0"
67+
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "2.3.0"
6868
addCompilerPlugin(scalafixSemanticdb)
6969
scalacOptions ++= List("-Yrangepos", "-P:semanticdb:synthetics:on")
7070
```
@@ -82,8 +82,8 @@ To cross-build for 2.12 and 2.11, the rewrite rule introduces a dependency on th
8282

8383
```scala
8484
// build.sbt
85-
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "2.2.0"
86-
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.2.0"
85+
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "2.3.0"
86+
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.3.0"
8787
addCompilerPlugin(scalafixSemanticdb)
8888
scalacOptions ++= List("-Yrangepos", "-P:semanticdb:synthetics:on")
8989
```

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ lazy val compat = MultiScalaCrossProject(JSPlatform, JVMPlatform, NativePlatform
7272
.jvmSettings(
7373
Test / unmanagedSourceDirectories += (ThisBuild / baseDirectory).value / "compat/src/test/scala-jvm",
7474
junit,
75-
scalaModuleMimaPreviousVersion := Some("2.2.0"),
75+
scalaModuleMimaPreviousVersion := Some("2.3.0").filterNot(_ => isDotty.value),
7676
mimaBinaryIssueFilters ++= {
7777
import com.typesafe.tools.mima.core._
7878
import com.typesafe.tools.mima.core.ProblemFilters._

0 commit comments

Comments
 (0)