Skip to content

Commit 9ff4649

Browse files
committed
Version 0.2.3.
1 parent 573ce1f commit 9ff4649

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ of JDK8 for Scala.js. It enables this API in Scala.js projects.
1111
Simply add the following line to your sbt settings:
1212

1313
```scala
14-
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.2"
14+
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.3"
1515
```
1616

1717
If you have a `crossProject`, the setting must be used only in the JS part:
@@ -20,7 +20,7 @@ If you have a `crossProject`, the setting must be used only in the JS part:
2020
lazy val myCross = crossProject.
2121
...
2222
jsSettings.(
23-
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.2"
23+
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.3"
2424
)
2525
```
2626

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ crossScalaVersions in ThisBuild := Seq("2.12.4", "2.11.12", "2.10.7", "2.13.0-M2
44
scalaVersion in ThisBuild := (crossScalaVersions in ThisBuild).value.head
55

66
val commonSettings: Seq[Setting[_]] = Seq(
7-
version := "0.2.3-SNAPSHOT",
7+
version := "0.2.3",
88
organization := "org.scala-js",
99
scalacOptions ++= Seq("-deprecation", "-feature", "-Xfatal-warnings"),
1010

0 commit comments

Comments
 (0)