From 2959ed81b73698f369576f145902ffc8c2dd429b Mon Sep 17 00:00:00 2001 From: David Barri Date: Fri, 25 Dec 2015 16:00:43 +1100 Subject: [PATCH] Release 0.10.3 --- README.md | 2 +- doc/EXTRA.md | 2 +- doc/FP.md | 4 ++-- doc/TESTING.md | 2 +- doc/USAGE.md | 2 +- doc/changelog/0.10.3.md | 2 +- project/Build.scala | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e99785fa4..5e8fe0202 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.2.md). +- [Changelogs](doc/changelog) — [Latest](doc/changelog/0.10.3.md). ##### External Resources diff --git a/doc/EXTRA.md b/doc/EXTRA.md index ae21abed4..8928cf8ba 100644 --- a/doc/EXTRA.md +++ b/doc/EXTRA.md @@ -2,7 +2,7 @@ ====================== ```scala -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.10.2" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.10.3" ``` **Big Stuff** diff --git a/doc/FP.md b/doc/FP.md index 98b8523e2..5ccdad036 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.2" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.10.3" ``` 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.2" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.10.3" ``` 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 c55f7af70..f4763bfb8 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.2" % "test" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.10.3" % "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 393ccedc0..72ed91022 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.2" + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.10.3" // React JS itself (Note the filenames, adjust as needed, eg. to remove addons.) jsDependencies ++= Seq( diff --git a/doc/changelog/0.10.3.md b/doc/changelog/0.10.3.md index d942b8eb2..a036e8625 100644 --- a/doc/changelog/0.10.3.md +++ b/doc/changelog/0.10.3.md @@ -1,4 +1,4 @@ -# 0.10.3 (unreleased) +# 0.10.3 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.10.2...v0.10.3)) * Add `Callback.tailrec`. * Add `CallbackOption.tailrec`. diff --git a/project/Build.scala b/project/Build.scala index 604b548d2..71f615bc9 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.3-SNAPSHOT", + version := "0.10.3", homepage := Some(url("https://github.com/japgolly/scalajs-react")), licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")), scalaVersion := Scala211,