File tree 3 files changed +7
-6
lines changed
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
1
History
2
2
=======
3
3
4
- ### 0.5.3 (unreleased )
4
+ ### 0.5.3 ([ commit log ] ( https://github.com/japgolly/scalajs-react/compare/v0.5.2...v0.5.3 ) )
5
5
6
+ * Deprecated and renamed ` StateT.liftR ` in favour of ` liftS ` .
6
7
* Workaround for Scala's type inference failing with ` StateT.liftS ` on functions.
7
8
Instead of ` f(_).liftS ` , ` f.liftS ` is now available and is confirmed to work in ` _runState ` .
8
9
Original file line number Diff line number Diff line change @@ -27,19 +27,19 @@ Setup
27
27
SBT
28
28
``` scala
29
29
// Minimal usage
30
- libraryDependencies += " com.github.japgolly.scalajs-react" %%% " core" % " 0.5.2 "
30
+ libraryDependencies += " com.github.japgolly.scalajs-react" %%% " core" % " 0.5.3 "
31
31
32
32
// React itself
33
33
// (react-with-addons.js can be react.js, react.min.js, react-with-addons.min.js)
34
34
jsDependencies += " org.webjars" % " react" % " 0.11.1" / " react-with-addons.js" commonJSName " React"
35
35
36
36
// Test support including ReactTestUtils
37
37
// (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"
39
39
40
40
// 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 "
43
43
```
44
44
45
45
Code:
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ object ScalajsReact extends Build {
18
18
_.settings(scalaJSSettings : _* )
19
19
.settings(
20
20
organization := " com.github.japgolly.scalajs-react" ,
21
- version := " 0.5.3-SNAPSHOT " ,
21
+ version := " 0.5.3" ,
22
22
homepage := Some (url(" https://github.com/japgolly/scalajs-react" )),
23
23
licenses += (" Apache-2.0" , url(" http://opensource.org/licenses/Apache-2.0" )),
24
24
scalaVersion := Scala211 ,
You can’t perform that action at this time.
0 commit comments