Skip to content

Commit 18c0eca

Browse files
committed
rename to scala-library-compat
fixes #317
1 parent 2fb1588 commit 18c0eca

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Several levels of contribution are possible!
1414

1515
### Report a missing case
1616

17-
Create an issue [scala-collection-compat/issues](https://github.com/scala/scala-collection-compat/issues).
17+
Create an issue [scala-library-compat/issues](https://github.com/scala/scala-library-compat/issues).
1818
Embrace `diff`s to describe differences between the standard collections and
1919
the new collection:
2020

NOTICE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
scala-collection-compat
1+
scala-library-compat
22
Copyright (c) 2002-2020 EPFL
33
Copyright (c) 2011-2020 Lightbend, Inc.
44

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,5 @@ import scalafix.sbt.ScalafixPlugin.autoImport.{scalafixDependencies, scalafixSem
9292

9393
### Contributing
9494

95-
The migration tool is not exhaustive and we will continue to improve
96-
it over time. If you encounter a use case that’s not supported, please
97-
report it as described in the
98-
[contributing documentation](CONTRIBUTING.md#migration-tool).
95+
The migration tool is not exhaustive. Contributions of additional rewrites are welcome. If you encounter a use case that’s not supported, please report it as described in the [contributing
96+
documentation](CONTRIBUTING.md#migration-tool).

build.sbt

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ lazy val commonSettings = Seq(
1414
|See the NOTICE file distributed with this work for
1515
|additional information regarding copyright ownership.
1616
|""".stripMargin)),
17-
scalaModuleMimaPreviousVersion := Some("2.1.4")
17+
scalaModuleMimaPreviousVersion := None // TODO: change to `Some("3.0.0") once we publish
1818
)
1919

2020
lazy val root = project
2121
.in(file("."))
2222
.settings(commonSettings)
23-
.settings(name := "scala-collection-compat")
23+
.settings(name := "scala-library-compat")
2424
.settings(dontPublish)
2525
.aggregate(
2626
compat211JVM,
@@ -56,8 +56,8 @@ lazy val compat = MultiScalaCrossProject(JSPlatform, JVMPlatform, NativePlatform
5656
_.settings(scalaModuleSettings)
5757
.settings(commonSettings)
5858
.settings(
59-
name := "scala-collection-compat",
60-
moduleName := "scala-collection-compat",
59+
name := "scala-library-compat",
60+
moduleName := "scala-library-compat",
6161
scalacOptions ++= Seq("-feature", "-language:higherKinds", "-language:implicitConversions"),
6262
unmanagedSourceDirectories in Compile += {
6363
val sharedSourceDir = (baseDirectory in ThisBuild).value / "compat/src/main"
@@ -72,7 +72,7 @@ lazy val compat = MultiScalaCrossProject(JSPlatform, JVMPlatform, NativePlatform
7272
.jsSettings(
7373
scalacOptions += {
7474
val x = (baseDirectory in LocalRootProject).value.toURI.toString
75-
val y = "https://raw.githubusercontent.com/scala/scala-collection-compat/" + sys.process
75+
val y = "https://raw.githubusercontent.com/scala/scala-library-compat/" + sys.process
7676
.Process("git rev-parse HEAD")
7777
.lineStream_!
7878
.head

0 commit comments

Comments
 (0)