Skip to content

Commit a93776c

Browse files
committed
Version 0.1.2.
1 parent 790d27a commit a93776c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# scalajs-java-logging
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)
4-
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-0.6.15.svg)](https://www.scala-js.org/)
4+
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-0.6.17.svg)](https://www.scala-js.org/)
55

66
`scalajs-java-logging` is a BSD-licensed reimplementation of the `java.logging` API for Scala.js.
77
It enables this API in Scala.js projects.
@@ -11,7 +11,7 @@ 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-logging" % "0.1.1"
14+
libraryDependencies += "org.scala-js" %%% "scalajs-java-logging" % "0.1.2"
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-logging" % "0.1.1"
23+
libraryDependencies += "org.scala-js" %%% "scalajs-java-logging" % "0.1.2"
2424
)
2525
```
2626

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ crossScalaVersions in ThisBuild := Seq("2.11.11", "2.10.6", "2.12.2", "2.13.0-M1
22
scalaVersion in ThisBuild := (crossScalaVersions in ThisBuild).value.head
33

44
val commonSettings: Seq[Setting[_]] = Seq(
5-
version := "0.1.2-SNAPSHOT",
5+
version := "0.1.2",
66
organization := "org.scala-js",
77
scalacOptions ++= Seq("-deprecation", "-feature", "-Xfatal-warnings"),
88

0 commit comments

Comments
 (0)