Skip to content

Commit 8aca9e5

Browse files
committed
9.2
1 parent 9679d1b commit 8aca9e5

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## [v9.2] - 2017-05-19
4+
5+
- Use React component class for memoized views.
6+
Significantly improves performance by avoiding unnecessary React VDOM
7+
subtree comparison. This brings performance characteristics in line with
8+
vanilla React and a single state atom and PureRenderMixin.
9+
- Check for target.value. Fixes [#119](https://github.com/alexmingoia/purescript-pux/issues/119)
10+
311
## [v9.1] - 2017-05-02
412

513
- Send events returned by effects after the current execution context.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "purescript-pux",
33
"description": "Build purely functional type-safe web apps with PureScript.",
4-
"version": "9.1.0",
4+
"version": "9.2.0",
55
"scripts": {
66
"postinstall": "bower install",
77
"build:clean": "rm -rf dist output",

website/src/App/Events.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ foldp (LoadMarkdown filepath) st =
7272
buffer <- readFile path
7373
md <- toString UTF8 buffer
7474
let sliced = case st.route of
75-
Home _ -> "# Introduction\n\nPux is" <> (fromMaybe "" $ last $ split (Pattern "Pux is") md)
75+
Home _ -> "# Build purely functional type-safe web applications\n\nPux is" <> (fromMaybe "" $ last $ split (Pattern "Pux is") md)
7676
_ -> md
7777
pure $ case (parseMd sliced) of
7878
Left err -> Just $ FileNotFound filepath

0 commit comments

Comments
 (0)