File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
[ ![ 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
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 )
5
7
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.
7
9
It enables this API in Scala.js projects.
8
10
9
11
## Usage
10
12
11
13
Simply add the following line to your sbt settings:
12
14
13
15
``` scala
14
- libraryDependencies += " org.scala-js" %%% " scalajs-java-logging" % " 0.1.4 "
16
+ libraryDependencies += " org.scala-js" %%% " scalajs-java-logging" % " 0.1.5 "
15
17
```
16
18
17
19
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:
20
22
lazy val myCross = crossProject.
21
23
...
22
24
jsSettings.(
23
- libraryDependencies += " org.scala-js" %%% " scalajs-java-logging" % " 0.1.4 "
25
+ libraryDependencies += " org.scala-js" %%% " scalajs-java-logging" % " 0.1.5 "
24
26
)
25
27
```
26
28
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ crossScalaVersions in ThisBuild := {
12
12
scalaVersion in ThisBuild := (crossScalaVersions in ThisBuild ).value.head
13
13
14
14
val commonSettings : Seq [Setting [_]] = Seq (
15
- version := " 0.1.5-SNAPSHOT " ,
15
+ version := " 0.1.5" ,
16
16
organization := " org.scala-js" ,
17
17
scalacOptions ++= Seq (" -deprecation" , " -feature" , " -Xfatal-warnings" ),
18
18
You can’t perform that action at this time.
0 commit comments