Skip to content

Commit

Permalink
Release 0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
japgolly committed Nov 29, 2015
1 parent 2696d71 commit 68476b9
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.md).
- [Changelogs](doc/changelog)[Latest](doc/changelog/0.10.2.md).


##### External Resources
Expand Down
2 changes: 2 additions & 0 deletions bin/update_version_in_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@ cd "$(dirname "$(readlink -e "$0")")/.." || exit 1
ver="$1"

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

2 changes: 1 addition & 1 deletion doc/EXTRA.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
======================

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

**Big Stuff**
Expand Down
4 changes: 2 additions & 2 deletions doc/FP.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Scalaz
======

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

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

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

A module with a extensions for [Monocle](https://github.com/julien-truffaut/Monocle) also exists under `ext-monocle`.
Expand Down
2 changes: 1 addition & 1 deletion doc/TESTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Setup

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

// React JS itself.
// NOTE: Requires react-with-addons.js instead of just react.js
Expand Down
2 changes: 1 addition & 1 deletion doc/USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Setup

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

// React JS itself (Note the filenames, adjust as needed, eg. to remove addons.)
jsDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion doc/changelog/0.10.2.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.10.2 (unreleased)
# 0.10.2 ([commit log](https://github.com/japgolly/scalajs-react/compare/v0.10.1...v0.10.2))

##### Upgrade React to 0.14.3.
Adds new attributes:
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ object ScalajsReact extends Build {
_.enablePlugins(ScalaJSPlugin)
.settings(
organization := "com.github.japgolly.scalajs-react",
version := "0.10.2-SNAPSHOT",
version := "0.10.2",
homepage := Some(url("https://github.com/japgolly/scalajs-react")),
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")),
scalaVersion := Scala211,
Expand Down

0 comments on commit 68476b9

Please sign in to comment.