Skip to content

Commit 67b8d4a

Browse files
committed
Version 0.2.4.
1 parent 6d4906a commit 67b8d4a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
[![Build Status](https://travis-ci.org/scala-js/scala-js-java-time.svg?branch=master)](https://travis-ci.org/scala-js/scala-js-java-time)
44
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-0.6.17.svg)](https://www.scala-js.org/)
5+
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-1.0.0-M3.svg)](https://www.scala-js.org)
56

67
`scalajs-java-time` is a BSD-licensed reimplementation of the `java.time` API
78
of JDK8 for Scala.js. It enables this API in Scala.js projects.
@@ -11,7 +12,7 @@ of JDK8 for Scala.js. It enables this API in Scala.js projects.
1112
Simply add the following line to your sbt settings:
1213

1314
```scala
14-
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.3"
15+
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.4"
1516
```
1617

1718
If you have a `crossProject`, the setting must be used only in the JS part:
@@ -20,7 +21,7 @@ If you have a `crossProject`, the setting must be used only in the JS part:
2021
lazy val myCross = crossProject
2122
...
2223
.jsSettings(
23-
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.3"
24+
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.4"
2425
)
2526
```
2627

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.5", "2.11.12", "2.10.7", "2.13.0-M3
44
scalaVersion in ThisBuild := (crossScalaVersions in ThisBuild).value.head
55

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

0 commit comments

Comments
 (0)