From 793aeb7243ae0b4be1abbc15bfd5f5c3757d9f61 Mon Sep 17 00:00:00 2001 From: David Barri Date: Thu, 8 Jan 2015 17:10:44 +1100 Subject: [PATCH] Release 0.7.1 --- README.md | 12 ++++++------ project/Build.scala | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 9ae7a6190..ec9a4075c 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Firstly, you'll need to add [Scala.js](http://www.scala-js.org) to your project. Next, add scalajs-react to SBT: ```scala // Minimal usage -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.7.0" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.7.1" // React itself // (react-with-addons.js can be react.js, react.min.js, react-with-addons.min.js) @@ -45,17 +45,17 @@ jsDependencies += "org.webjars" % "react" % "0.12.1" / "react-with-addons.js" co // Test support including ReactTestUtils // (requires react-with-addons.js instead of just react.js) -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.7.0" % "test" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.7.1" % "test" // Scalaz support -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.7.0" // or -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz70" % "0.7.0" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.7.1" // or +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz70" % "0.7.1" // Monocle support -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.7.0" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.7.1" // Extra features -libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.7.0" +libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.7.1" ``` Code: diff --git a/project/Build.scala b/project/Build.scala index 505e5b8c2..b154746ca 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -18,7 +18,7 @@ object ScalajsReact extends Build { _.settings(scalaJSSettings: _*) .settings( organization := "com.github.japgolly.scalajs-react", - version := "0.7.1-SNAPSHOT", + version := "0.7.1", homepage := Some(url("https://github.com/japgolly/scalajs-react")), licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")), scalaVersion := Scala211,