Skip to content

Commit 8eb3318

Browse files
committed
Version 0.1.5.
1 parent 5219b1e commit 8eb3318

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,18 @@
22

33
[![Build Status](https://travis-ci.org/scala-js/scala-js-java-logging.svg?branch=master)](https://travis-ci.org/scala-js/scala-js-java-logging)
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)
6+
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-1.0.0-M5.svg)](https://www.scala-js.org)
57

6-
`scalajs-java-logging` is a BSD-licensed reimplementation of the `java.logging` API for Scala.js.
8+
`scalajs-java-logging` is a BSD-licensed reimplementation of the `java.logging` API for Scala.js.
79
It enables this API in Scala.js projects.
810

911
## Usage
1012

1113
Simply add the following line to your sbt settings:
1214

1315
```scala
14-
libraryDependencies += "org.scala-js" %%% "scalajs-java-logging" % "0.1.4"
16+
libraryDependencies += "org.scala-js" %%% "scalajs-java-logging" % "0.1.5"
1517
```
1618

1719
If you have a `crossProject`, the setting must be used only in the JS part:
@@ -20,7 +22,7 @@ If you have a `crossProject`, the setting must be used only in the JS part:
2022
lazy val myCross = crossProject.
2123
...
2224
jsSettings.(
23-
libraryDependencies += "org.scala-js" %%% "scalajs-java-logging" % "0.1.4"
25+
libraryDependencies += "org.scala-js" %%% "scalajs-java-logging" % "0.1.5"
2426
)
2527
```
2628

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.1.5-SNAPSHOT",
15+
version := "0.1.5",
1616
organization := "org.scala-js",
1717
scalacOptions ++= Seq("-deprecation", "-feature", "-Xfatal-warnings"),
1818

0 commit comments

Comments
 (0)