Skip to content

Commit 7df5a92

Browse files
committed
Update scala 3
Signed-off-by: Carlos Quiroz <[email protected]>
1 parent 89cdfc0 commit 7df5a92

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ The implementation is based on the original BSD-licensed reference implementatio
1313
#### Usage
1414

1515
The *scala-java-time* library is currently available for Scala (JVM, version 8 and later) and Scala.js (JavaScript).
16-
Scala 2.11, Scala 2.12, Scala 2.13 and Scala 3.0.0-RC1/RC2 are supported.
16+
Scala 2.11, Scala 2.12, Scala 2.13 and Scala 3.0.0-RC2/RC3 are supported.
1717

1818
To get started with SBT, add one (or both) of these dependencies:
1919

20-
- `libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % "2.2.1"`
20+
- `libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % "2.2.2"`
2121

2222
#### Documentation
2323

build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import sbtcrossproject.CrossPlugin.autoImport.{ CrossType, crossProject }
33
import sbt._
44
import sbt.io.Using
55

6-
val scalaVer = "3.0.0-RC2"
6+
val scalaVer = "3.0.0-RC3"
77
val tzdbVersion = "2019c"
8-
val scalajavaLocalesVersion = "1.1.2"
8+
val scalajavaLocalesVersion = "1.1.3"
99
Global / onChangedBuildSource := ReloadOnSourceChanges
1010

1111
Global / resolvers += Resolver.sonatypeRepo("public")
@@ -53,7 +53,7 @@ def scalaVersionSpecificFolders(srcName: String, srcBaseDir: java.io.File, scala
5353
lazy val commonSettings = Seq(
5454
description := "java.time API implementation in Scala and Scala.js",
5555
scalaVersion := scalaVer,
56-
crossScalaVersions := Seq("2.11.12", "2.12.13", "2.13.5", "3.0.0-RC1", "3.0.0-RC2"),
56+
crossScalaVersions := Seq("2.11.12", "2.12.13", "2.13.5", "3.0.0-RC2", "3.0.0-RC3"),
5757
// Don't include threeten on the binaries
5858
Compile / packageBin / mappings := (Compile / packageBin / mappings).value.filter {
5959
case (f, s) => !s.contains("threeten")

0 commit comments

Comments
 (0)