Skip to content

Commit

Permalink
Release v0.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
japgolly committed Nov 5, 2016
1 parent 387e710 commit 998f436
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,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.11.2.md).
- [Changelogs](doc/changelog)[Latest](doc/changelog/0.11.3.md).


##### External Resources
Expand All @@ -49,6 +49,6 @@ Includes a router, testing utils, performance utils, more.

##### Requirements:
* React 15+
* Scala 2.11.n
* Scala 2.11+
* Scala.JS 0.6.13+

2 changes: 1 addition & 1 deletion bin/update_version_in_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +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/(?<="'"$ver"')-SNAPSHOT//' build.sbt \
&& perl -pi -e 's/(Latest.+\/changelog\/)[0-9.]+?(?=\.md)/${1}'"$ver"'/' README.md \
&& git diff

2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version in ThisBuild := "0.11.3-SNAPSHOT"
version in ThisBuild := "0.11.3"

val root = ScalajsReact.root
val core = ScalajsReact.core
Expand Down
2 changes: 1 addition & 1 deletion doc/EXTRA.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This describes the smaller utilities in the `extra` module.
Find links to the larger utilities from the [main README](../README.md).

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.2"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.3"
```

#### Contents
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-scalaz72" % "0.11.2"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-scalaz72" % "0.11.3"
```

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.11.2"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "ext-monocle" % "0.11.3"
```

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/PERFORMANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ These utilities help you avoid work in two ways.
2. By allowing you to cache your own arbitrary data, and build on it in a way such that derivative data is also cached effeciently.

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.2"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.3"
```

### Contents
Expand Down
2 changes: 1 addition & 1 deletion doc/ROUTER.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Included is a router (in the orbit of Single-Page Applications) that is written
The package is `japgolly.scalajs.react.extra.router`.

```scala
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.2"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "extra" % "0.11.3"
```

## Contents
Expand Down
2 changes: 1 addition & 1 deletion doc/TESTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Setup

```scala
// scalajs-react test module
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.11.2" % "test"
libraryDependencies += "com.github.japgolly.scalajs-react" %%% "test" % "0.11.3" % "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 @@ -26,7 +26,7 @@ Setup

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

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

0 comments on commit 998f436

Please sign in to comment.