Skip to content

Commit 25ca297

Browse files
committed
Merge branch 'master' into 2.13.x
2 parents 7d958c8 + 62d4f80 commit 25ca297

File tree

5 files changed

+24
-3
lines changed

5 files changed

+24
-3
lines changed

CODE_OF_CONDUCT.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
all repositories in these organizations:
2+
3+
* [scala](https://github.com/scala)
4+
* [scalacenter](https://github.com/scalacenter)
5+
* [lampepfl](https://github.com/lampepfl)
6+
7+
are covered by the Scala Code of Conduct: https://scala-lang.org/conduct/

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,4 +198,4 @@
198198
distributed under the License is distributed on an "AS IS" BASIS,
199199
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200200
See the License for the specific language governing permissions and
201-
limitations under the License.
201+
limitations under the License.

NOTICE

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
scala-java8-compat
2+
Copyright (c) 2002-2019 EPFL
3+
Copyright (c) 2011-2019 Lightbend, Inc.
4+
5+
scala-java8-compat includes software developed at
6+
LAMP/EPFL (https://lamp.epfl.ch/) and
7+
Lightbend, Inc. (https://www.lightbend.com/).
8+
9+
Licensed under the Apache License, Version 2.0 (the "License").
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ Example of conversions from the Java type ways:
268268

269269
```scala
270270
import scala.concurrent.duration._
271-
import scala.compat.java8.DurationConverters
271+
import scala.compat.java8.DurationConverters._
272272

273273
val javaDuration: java.time.Duration = 5.seconds.toJava
274274
val finiteDuration: FiniteDuration = javaDuration.toScala

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ lazy val root = (project in file(".")).
5252

5353
libraryDependencies += "junit" % "junit" % "4.12" % "test",
5454

55-
libraryDependencies += "org.apache.commons" % "commons-lang3" % "3.8.1" % "test",
55+
libraryDependencies += "org.apache.commons" % "commons-lang3" % "3.9" % "test",
5656

5757
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test",
5858

0 commit comments

Comments
 (0)