From f17d7bf9001d4be0d5ba9d6d909fdaf90664d033 Mon Sep 17 00:00:00 2001 From: David Barri Date: Sat, 16 Jan 2016 12:10:52 +1100 Subject: [PATCH] Release 0.10.4 --- README.md | 2 +- doc/EXTRA.md | 2 +- doc/FP.md | 4 ++-- doc/TESTING.md | 2 +- doc/USAGE.md | 2 +- doc/changelog/0.10.4.md | 6 ++---- project/Build.scala | 2 +- 7 files changed, 9 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 5e8fe0202..29d4c717f 100644 --- a/README.md +++ b/README.md @@ -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.3.md). +- [Changelogs](doc/changelog) — [Latest](doc/changelog/0.10.4.md). ##### External Resources diff --git a/doc/EXTRA.md b/doc/EXTRA.md index 8928cf8ba..fb356a2e2 100644 --- a/doc/EXTRA.md +++ b/doc/EXTRA.md @@ -2,7 +2,7 @@ ====================== ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.10.3" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.10.4" ``` **Big Stuff** diff --git a/doc/FP.md b/doc/FP.md index 5ccdad036..f5abe8e11 100644 --- a/doc/FP.md +++ b/doc/FP.md @@ -22,7 +22,7 @@ Scalaz ====== ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.10.3" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.10.4" ``` Included is a Scalaz module that facilitates a more functional and pure approach to React integration. @@ -39,7 +39,7 @@ Monocle ======= ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.10.3" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.10.4" ``` A module with a extensions for [Monocle](https://github.com/julien-truffaut/Monocle) also exists under `ext-monocle`. diff --git a/doc/TESTING.md b/doc/TESTING.md index f4763bfb8..52963e82c 100644 --- a/doc/TESTING.md +++ b/doc/TESTING.md @@ -16,7 +16,7 @@ Setup ```scala // scalajs-react test module - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.10.3" % "test" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.10.4" % "test" // React JS itself. // NOTE: Requires react-with-addons.js instead of just react.js diff --git a/doc/USAGE.md b/doc/USAGE.md index 72ed91022..5bd1e3e2e 100644 --- a/doc/USAGE.md +++ b/doc/USAGE.md @@ -25,7 +25,7 @@ Setup ```scala // core = essentials only. No bells or whistles. - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.10.3" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.10.4" // React JS itself (Note the filenames, adjust as needed, eg. to remove addons.) jsDependencies ++= Seq( diff --git a/doc/changelog/0.10.4.md b/doc/changelog/0.10.4.md index 592682767..98a1ff5bf 100644 --- a/doc/changelog/0.10.4.md +++ b/doc/changelog/0.10.4.md @@ -1,7 +1,5 @@ -## 0.10.4 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.10.3...v0.10.4)) (UNRELEASED) - -##### Changes +## 0.10.4 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.10.3...v0.10.4)) * `Callback.future` now re-throws captured exceptions. +* `js.Dictionary` can be used as a tag attribute value. ([#241](https://github.com/japgolly/scalajs-react/issues/241)) * Add `RouterCtl.onSet` to perform additional actions when a route is set. -* `js.Dictionary` can be used as a tag attribute value. ([#241](https://github.com/japgolly/scalajs-react/issues/241)) \ No newline at end of file diff --git a/project/Build.scala b/project/Build.scala index 365f647a4..8d5fdae2d 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -19,7 +19,7 @@ object ScalajsReact extends Build { _.enablePlugins(ScalaJSPlugin) .settings( organization := "com.github.japgolly.scalajs-react", - version := "0.10.4-SNAPSHOT", + version := "0.10.4", homepage := Some(url("https://github.com/japgolly/scalajs-react")), licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")), scalaVersion := Scala211,