Skip to content

Commit a3c6c9e

Browse files
committed
Version 0.2.5.
1 parent 3281a38 commit a3c6c9e

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
@@ -3,6 +3,7 @@
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/)
55
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-1.0.0-M3.svg)](https://www.scala-js.org)
6+
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-1.0.0-M5.svg)](https://www.scala-js.org)
67

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

1415
```scala
15-
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.4"
16+
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.5"
1617
```
1718

1819
If you have a `crossProject`, the setting must be used only in the JS part:
@@ -21,7 +22,7 @@ If you have a `crossProject`, the setting must be used only in the JS part:
2122
lazy val myCross = crossProject
2223
...
2324
.jsSettings(
24-
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.4"
25+
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.5"
2526
)
2627
```
2728

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ crossScalaVersions in ThisBuild := {
1212
scalaVersion in ThisBuild := (crossScalaVersions in ThisBuild).value.head
1313

1414
val commonSettings: Seq[Setting[_]] = Seq(
15-
version := "0.2.5-SNAPSHOT",
15+
version := "0.2.5",
1616
organization := "org.scala-js",
1717
scalacOptions ++= Seq("-deprecation", "-feature", "-Xfatal-warnings"),
1818

0 commit comments

Comments
 (0)