Skip to content

Commit 92835de

Browse files
committed
Version 0.2.6.
1 parent ed0d56f commit 92835de

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# scalajs-java-time
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)
4-
[![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)
6-
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-1.0.0-M5.svg)](https://www.scala-js.org)
4+
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-0.6.29.svg)](https://www.scala-js.org/)
5+
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-1.0.0-M8.svg)](https://www.scala-js.org)
6+
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-1.0.0-RC1.svg)](https://www.scala-js.org)
77

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

1515
```scala
16-
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.5"
16+
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.6"
1717
```
1818

1919
If you have a `crossProject`, the setting must be used only in the JS part:
@@ -22,7 +22,7 @@ If you have a `crossProject`, the setting must be used only in the JS part:
2222
lazy val myCross = crossProject
2323
...
2424
.jsSettings(
25-
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.5"
25+
libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.2.6"
2626
)
2727
```
2828

build.sbt

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

1212
val commonSettings: Seq[Setting[_]] = Seq(
13-
version := "0.2.6-SNAPSHOT",
13+
version := "0.2.6",
1414
organization := "org.scala-js",
1515
scalacOptions ++= Seq("-deprecation", "-feature", "-Xfatal-warnings"),
1616

0 commit comments

Comments
 (0)