Skip to content
This repository was archived by the owner on Apr 17, 2022. It is now read-only.

Commit b387066

Browse files
committed
Prepare for 0.3.0
1 parent b229070 commit b387066

File tree

4 files changed

+8
-781
lines changed

4 files changed

+8
-781
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
scala-js-d3
22
===============
3+
[![Scala.js](http://scala-js.org/assets/badges/scalajs-0.6.5.svg)](http://scala-js.org)
4+
[![Scala.js](http://scala-js.org/assets/badges/scalajs-0.6.6.svg)](http://scala-js.org)
35

46
Static types for the d3 API for [Scala.js](http://www.scala-js.org/) programs.
57

@@ -9,15 +11,15 @@ Usage
911
-----
1012
Add the following to your sbt build definition:
1113

12-
libraryDependencies += "org.singlespaced" %%% "scalajs-d3" % "0.2.0"
14+
libraryDependencies += "org.singlespaced" %%% "scalajs-d3" % "0.3.0"
1315

1416
Enjoy the types available in `org.singlespaced.d3js`:
1517
```
1618
package example
1719
1820
import scala.scalajs.js
1921
import org.scalajs.dom
20-
import org.singlespaced.d3js._
22+
import org.singlespaced.d3js.d3
2123
import org.singlespaced.d3js.Ops._
2224
2325
object ScalaJSExample extends js.JSApp {
@@ -34,6 +36,8 @@ more about [d3js.org](http://d3js.org)
3436
See also example project [scala-js-d3-example-app](https://github.com/spaced/scala-js-d3-example-app)
3537

3638
scalajs-d3 0.2.0 is for Scala.js 0.6.5, with both Scala 2.10 and 2.11.
39+
scalajs-d3 0.3.0 is for Scala.js 0.6.6+, with both Scala 2.10 and 2.11.
40+
3741

3842
License
3943
-------

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jsDependencies += RuntimeDOM
2323
libraryDependencies += "com.lihaoyi" %%% "utest" % "0.3.1" % "test"
2424
testFrameworks += new TestFramework("utest.runner.Framework")
2525
// use phantomjs for tests because d3 lib uses not features not supported by rhino
26-
scalaJSStage in Global := FastOptStage
26+
scalaJSUseRhino in Global := false
2727

2828
homepage := Some(url("https://github.com/spaced/scala-js-d3"))
2929
licenses += ("BSD New", url("https://github.com/spaced/scala-js-d3/blob/master/LICENSE"))

project/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.5")
1+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.6")
22

33
addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0")
44

0 commit comments

Comments
 (0)