Skip to content

Commit d4dc277

Browse files
authored
Merge pull request #242 from SethTisue/bumpity-bump-bump
2.1.2 is published, bump versions
2 parents eff9f2b + 6b27e98 commit d4dc277

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This library provides some of the new APIs from Scala 2.13 to Scala 2.11 and 2.1
88
To use this library, add the following to your build.sbt:
99

1010
```
11-
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.1.1"
11+
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.1.2"
1212
```
1313

1414
Version 2.0.0+ is compatible with Scala 2.13, 2.12, and 2.11.
@@ -53,7 +53,7 @@ The `Collection213Upgrade` rewrite upgrades to the 2.13 collections without the
5353

5454
```scala
5555
// build.sbt
56-
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "2.1.1"
56+
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "2.1.2"
5757
scalacOptions ++= List("-Yrangepos", "-P:semanticdb:synthetics:on")
5858
```
5959

@@ -71,8 +71,8 @@ To cross-build for 2.12 and 2.11, the rewrite rule introduces a dependency on th
7171

7272
```scala
7373
// build.sbt
74-
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "2.1.1"
75-
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.1.1"
74+
scalafixDependencies in ThisBuild += "org.scala-lang.modules" %% "scala-collection-migrations" % "2.1.2"
75+
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.1.2"
7676
scalacOptions ++= List("-Yrangepos", "-P:semanticdb:synthetics:on")
7777
```
7878

build.sbt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ lazy val commonSettings = Seq(
1717
mimaPreviousVersion := Some("2.1.1"),
1818
)
1919

20+
version in ThisBuild := "2.1.3-SNAPSHOT"
21+
2022
lazy val root = project
2123
.in(file("."))
2224
.settings(commonSettings)

0 commit comments

Comments
 (0)