From acb86f0d931cf419e414707300c3bbde873f8690 Mon Sep 17 00:00:00 2001 From: Peter Brant Date: Wed, 20 Jul 2016 01:47:17 +0200 Subject: [PATCH] Update versions --- .gitignore | 1 + bower.json | 4 ++-- package.json | 8 ++++---- src/React/Redux.purs | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index f643725..978361c 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ node_modules/ bower_components/ tmp/ output/ +*.tix diff --git a/bower.json b/bower.json index 9e374d5..1db0212 100644 --- a/bower.json +++ b/bower.json @@ -16,7 +16,7 @@ "!src/**/*" ], "dependencies": { - "purescript-profunctor-lenses": "~0.5.4", - "purescript-react": "~0.7.1" + "purescript-profunctor-lenses": "~1.0.0", + "purescript-react": "~1.1.0" } } diff --git a/package.json b/package.json index e97f1bb..c0c00b4 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,15 @@ { "name": "purescript-react-redux", - "version": "0.1.0", + "version": "1.0.0", "private": true, "files": [], "scripts": { "psc:server": "psc-ide-server --port 4291 --debug", "psc:watch": "pscid -p 4291", - "build": "pulp build --force" + "build": "pulp build" }, "devDependencies": { - "pscid": "^1.7.3", - "purescript": "^0.8.5" + "pscid": "^1.10.0", + "purescript": "^0.9.1" } } diff --git a/src/React/Redux.purs b/src/React/Redux.purs index 7d1b2b9..b1cc8aa 100644 --- a/src/React/Redux.purs +++ b/src/React/Redux.purs @@ -29,7 +29,7 @@ import Control.Monad.Eff (Eff) import Control.Monad.Eff.Class (class MonadEff, liftEff) import Data.Either (Either, either) -import Data.Function (Fn2, runFn2) +import Data.Function.Uncurried (Fn2, runFn2) import Data.Lens (GetterP, LensP, PrismP, matching, set, view) import Unsafe.Coerce (unsafeCoerce)