Skip to content

Commit

Permalink
Release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
japgolly committed Apr 11, 2016
1 parent 6e5ef46 commit fdeda1d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Includes a router, testing utils, performance utils, more.
- [Performance Management](doc/PERFORMANCE.md).
- [Smaller stuff](doc/EXTRA.md).
- [Testing](doc/TESTING.md).
- [Changelogs](doc/changelog)[Latest](doc/changelog/0.10.4.md).
- [Changelogs](doc/changelog)[Latest](doc/changelog/0.11.0.md).


##### External Resources
Expand Down
2 changes: 1 addition & 1 deletion doc/EXTRA.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
======================

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.10.4"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.0"
```

**Big Stuff**
Expand Down
4 changes: 2 additions & 2 deletions doc/FP.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Scalaz
======

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "0.10.4"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "0.11.0"
```

Included is a Scalaz module that facilitates a more functional and pure approach to React integration.
Expand All @@ -39,7 +39,7 @@ Monocle
=======

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.10.4"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.11.0"
```

A module with a extensions for [Monocle](https://github.com/julien-truffaut/Monocle) also exists under `ext-monocle`.
Expand Down
2 changes: 1 addition & 1 deletion doc/TESTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Setup

```scala
// scalajs-react test module
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.10.4" % "test"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.11.0" % "test"

// React JS itself.
// NOTE: Requires react-with-addons.js instead of just react.js
Expand Down
2 changes: 1 addition & 1 deletion doc/USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Setup

```scala
// core = essentials only. No bells or whistles.
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.10.4"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.11.0"

// React JS itself (Note the filenames, adjust as needed, eg. to remove addons.)
jsDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ object ScalajsReact extends Build {
_.enablePlugins(ScalaJSPlugin)
.settings(
organization := "com.github.japgolly.scalajs-react",
version := "0.11.0-SNAPSHOT",
version := "0.11.0",
homepage := Some(url("https://github.com/japgolly/scalajs-react")),
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")),
scalaVersion := Ver.Scala211,
Expand Down

0 comments on commit fdeda1d

Please sign in to comment.