Skip to content

Commit f17d7bf

Browse files
committed
Release 0.10.4
1 parent 3ca600e commit f17d7bf

File tree

7 files changed

+9
-11
lines changed

7 files changed

+9
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
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.3.md).
25+
- [Changelogs](doc/changelog)[Latest](doc/changelog/0.10.4.md).
2626

2727

2828
##### External Resources

doc/EXTRA.md

Lines changed: 1 addition & 1 deletion
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.3"
5+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.10.4"
66
```
77

88
**Big Stuff**

doc/FP.md

Lines changed: 2 additions & 2 deletions
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-scalaz71" % "0.10.3"
25+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.10.4"
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.3"
42+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.10.4"
4343
```
4444

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

doc/TESTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Setup
1616

1717
```scala
1818
// scalajs-react test module
19-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.10.3" % "test"
19+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.10.4" % "test"
2020

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

doc/USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Setup
2525

2626
```scala
2727
// core = essentials only. No bells or whistles.
28-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.10.3"
28+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.10.4"
2929

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

doc/changelog/0.10.4.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
## 0.10.4 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.10.3...v0.10.4)) (UNRELEASED)
2-
3-
##### Changes
1+
## 0.10.4 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.10.3...v0.10.4))
42

53
* `Callback.future` now re-throws captured exceptions.
4+
* `js.Dictionary` can be used as a tag attribute value. ([#241](https://github.com/japgolly/scalajs-react/issues/241))
65
* Add `RouterCtl.onSet` to perform additional actions when a route is set.
7-
* `js.Dictionary` can be used as a tag attribute value. ([#241](https://github.com/japgolly/scalajs-react/issues/241))

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ object ScalajsReact extends Build {
1919
_.enablePlugins(ScalaJSPlugin)
2020
.settings(
2121
organization := "com.github.japgolly.scalajs-react",
22-
version := "0.10.4-SNAPSHOT",
22+
version := "0.10.4",
2323
homepage := Some(url("https://github.com/japgolly/scalajs-react")),
2424
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")),
2525
scalaVersion := Scala211,

0 commit comments

Comments
 (0)