Skip to content

Commit 68476b9

Browse files
committed
Release 0.10.2
1 parent 2696d71 commit 68476b9

File tree

8 files changed

+10
-8
lines changed

8 files changed

+10
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Includes a router, testing utils, performance utils, more.
2222
- [Performance Management](doc/PERFORMANCE.md).
2323
- [Smaller stuff](doc/EXTRA.md).
2424
- [Testing](doc/TESTING.md).
25-
- [Changelogs](doc/changelog)[Latest](doc/changelog/0.10.1.md).
25+
- [Changelogs](doc/changelog)[Latest](doc/changelog/0.10.2.md).
2626

2727

2828
##### External Resources

bin/update_version_in_docs.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,7 @@ cd "$(dirname "$(readlink -e "$0")")/.." || exit 1
55
ver="$1"
66

77
find . -name '*.md' -exec perl -pi -e 's/(japgolly.scalajs-react.+)"0(?:\.\d+){2}"/\1"'"$ver"'"/' {} + \
8+
&& perl -pi -e 's/(?<="'"$ver"')-SNAPSHOT//' project/Build.scala \
9+
&& perl -pi -e 's/(Latest.+\/changelog\/)[0-9.]+?(?=\.md)/${1}'"$ver"'/' README.md \
810
&& git diff
911

doc/EXTRA.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
======================
33

44
```scala
5-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.10.1"
5+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.10.2"
66
```
77

88
**Big Stuff**

doc/FP.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Scalaz
2222
======
2323

2424
```scala
25-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.10.1"
25+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz71" % "0.10.2"
2626
```
2727

2828
Included is a Scalaz module that facilitates a more functional and pure approach to React integration.
@@ -39,7 +39,7 @@ Monocle
3939
=======
4040

4141
```scala
42-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.10.1"
42+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.10.2"
4343
```
4444

4545
A module with a extensions for [Monocle](https://github.com/julien-truffaut/Monocle) also exists under `ext-monocle`.

doc/TESTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Setup
1616

1717
```scala
1818
// scalajs-react test module
19-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.10.1" % "test"
19+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.10.2" % "test"
2020

2121
// React JS itself.
2222
// NOTE: Requires react-with-addons.js instead of just react.js

doc/USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Setup
2525

2626
```scala
2727
// core = essentials only. No bells or whistles.
28-
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.10.1"
28+
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "0.10.2"
2929

3030
// React JS itself (Note the filenames, adjust as needed, eg. to remove addons.)
3131
jsDependencies ++= Seq(

doc/changelog/0.10.2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 0.10.2 (unreleased)
1+
# 0.10.2 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.10.1...v0.10.2))
22

33
##### Upgrade React to 0.14.3.
44
Adds new attributes:

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ object ScalajsReact extends Build {
1919
_.enablePlugins(ScalaJSPlugin)
2020
.settings(
2121
organization := "com.github.japgolly.scalajs-react",
22-
version := "0.10.2-SNAPSHOT",
22+
version := "0.10.2",
2323
homepage := Some(url("https://github.com/japgolly/scalajs-react")),
2424
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")),
2525
scalaVersion := Scala211,

0 commit comments

Comments
 (0)