File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 11History
22=======
33
4- ### 0.5.3 (unreleased )
4+ ### 0.5.3 ([ commit log ] ( https://github.com/japgolly/scalajs-react/compare/v0.5.2...v0.5.3 ) )
55
6+ * Deprecated and renamed ` StateT.liftR ` in favour of ` liftS ` .
67* Workaround for Scala's type inference failing with ` StateT.liftS ` on functions.
78 Instead of ` f(_).liftS ` , ` f.liftS ` is now available and is confirmed to work in ` _runState ` .
89
Original file line number Diff line number Diff line change @@ -27,19 +27,19 @@ Setup
2727SBT
2828``` scala
2929// Minimal usage
30- libraryDependencies += " com.github.japgolly.scalajs-react" %%% " core" % " 0.5.2 "
30+ libraryDependencies += " com.github.japgolly.scalajs-react" %%% " core" % " 0.5.3 "
3131
3232// React itself
3333// (react-with-addons.js can be react.js, react.min.js, react-with-addons.min.js)
3434jsDependencies += " org.webjars" % " react" % " 0.11.1" / " react-with-addons.js" commonJSName " React"
3535
3636// Test support including ReactTestUtils
3737// (requires react-with-addons.js instead of just react.js)
38- libraryDependencies += " com.github.japgolly.scalajs-react" %%% " test" % " 0.5.2 " % " test"
38+ libraryDependencies += " com.github.japgolly.scalajs-react" %%% " test" % " 0.5.3 " % " test"
3939
4040// Scalaz support
41- libraryDependencies += " com.github.japgolly.scalajs-react" %%% " ext-scalaz70" % " 0.5.2 " // or
42- libraryDependencies += " com.github.japgolly.scalajs-react" %%% " ext-scalaz71" % " 0.5.2 "
41+ libraryDependencies += " com.github.japgolly.scalajs-react" %%% " ext-scalaz70" % " 0.5.3 " // or
42+ libraryDependencies += " com.github.japgolly.scalajs-react" %%% " ext-scalaz71" % " 0.5.3 "
4343```
4444
4545Code:
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ object ScalajsReact extends Build {
1818 _.settings(scalaJSSettings : _* )
1919 .settings(
2020 organization := " com.github.japgolly.scalajs-react" ,
21- version := " 0.5.3-SNAPSHOT " ,
21+ version := " 0.5.3" ,
2222 homepage := Some (url(" https://github.com/japgolly/scalajs-react" )),
2323 licenses += (" Apache-2.0" , url(" http://opensource.org/licenses/Apache-2.0" )),
2424 scalaVersion := Scala211 ,
You can’t perform that action at this time.
0 commit comments