Skip to content

Commit 7204dea

Browse files
authored
Merge pull request #231 from SethTisue/update-post-1.0.0-release
update readme and build, post 1.0.0
2 parents 4858d4d + 0b16b02 commit 7204dea

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

README.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
# scala-java8-compat [![Build Status](https://travis-ci.org/scala/scala-java8-compat.svg?branch=master)](https://travis-ci.org/scala/scala-java8-compat) [<img src="https://img.shields.io/maven-central/v/org.scala-lang.modules/scala-java8-compat_2.11.svg?label=latest%20release%20for%202.11"/>](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.scala-lang.modules%20a%3Ascala-java8-compat_2.11) [<img src="https://img.shields.io/maven-central/v/org.scala-lang.modules/scala-java8-compat_2.12.svg?label=latest%20release%20for%202.12"/>](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.scala-lang.modules%20a%3Ascala-java8-compat_2.12) [<img src="https://img.shields.io/maven-central/v/org.scala-lang.modules/scala-java8-compat_2.13.svg?label=latest%20release%20for%202.13"/>](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.scala-lang.modules%20a%3Ascala-java8-compat_2.13)
22

33

4-
A Java 8 compatibility kit for Scala.
5-
6-
The API is currently still experimental: we do not yet guarantee source or binary compatibility with future releases.
4+
A Java 8 compatibility kit for Scala 2.12 and 2.11.
75

86
Javadoc is [here](https://javadoc.io/doc/org.scala-lang.modules/scala-java8-compat_2.13/latest/index.html).
97

8+
## Do you need this?
9+
10+
If you are using Scala 2.13 or newer only, then don't use this library! Use the classes under `scala.jdk` instead; they were added to the standard library in 2.13.
11+
12+
We do publish 2.13 and 3.0 artifacts of scala-java8-compat, but they're only intended to be used in projects which crossbuild with 2.12 and/or 2.11.
13+
14+
## Maintenance status
15+
16+
This library is community-maintained. (The Scala team at Lightbend provides infrastructure and oversight.)
17+
1018
## Functional Interfaces for Scala functions
1119

1220
A set of [Functional Interfaces](https://docs.oracle.com/javase/8/docs/api/java/lang/FunctionalInterface.html)

build.sbt

+1-5
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,7 @@ lazy val scalaJava8Compat = (project in file("."))
7373

7474
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test",
7575

76-
scalaModuleMimaPreviousVersion := (CrossVersion.partialVersion(scalaVersion.value) match {
77-
// pending resolution of https://github.com/scalacenter/sbt-version-policy/issues/62
78-
case Some((3, _)) => None
79-
case _ => Some("1.0.0-RC1")
80-
}),
76+
scalaModuleMimaPreviousVersion := Some("1.0.0"),
8177

8278
mimaBinaryIssueFilters ++= {
8379
import com.typesafe.tools.mima.core._, ProblemFilters._

0 commit comments

Comments
 (0)