Skip to content

Commit fdeda1d

Browse files
committed
Release 0.11.0
1 parent 6e5ef46 commit fdeda1d

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Includes a router, testing utils, performance utils, more.
2222
- [Performance Management](doc/PERFORMANCE.md).
2323
- [Smaller stuff](doc/EXTRA.md).
2424
- [Testing](doc/TESTING.md).
25-
- [Changelogs](doc/changelog)[Latest](doc/changelog/0.10.4.md).
25+
- [Changelogs](doc/changelog)[Latest](doc/changelog/0.11.0.md).
2626

2727

2828
##### External Resources

Diff for: doc/EXTRA.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
======================
33

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

88
**Big Stuff**

Diff for: doc/FP.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Scalaz
2222
======
2323

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

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

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

4545
A module with a extensions for [Monocle](https://github.com/julien-truffaut/Monocle) also exists under `ext-monocle`.

Diff for: doc/TESTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Setup
1919

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

2424
// React JS itself.
2525
// NOTE: Requires react-with-addons.js instead of just react.js

Diff for: doc/USAGE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Setup
2626

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

3131
// React JS itself (Note the filenames, adjust as needed, eg. to remove addons.)
3232
jsDependencies ++= Seq(

Diff for: project/Build.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ object ScalajsReact extends Build {
2929
_.enablePlugins(ScalaJSPlugin)
3030
.settings(
3131
organization := "com.github.japgolly.scalajs-react",
32-
version := "0.11.0-SNAPSHOT",
32+
version := "0.11.0",
3333
homepage := Some(url("https://github.com/japgolly/scalajs-react")),
3434
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")),
3535
scalaVersion := Ver.Scala211,

0 commit comments

Comments
 (0)