Navigation Menu

Skip to content

Commit

Permalink
added focus, dep bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ekmett committed Aug 4, 2011
1 parent 1a83069 commit 39583fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Data/Lens.hs
Expand Up @@ -11,12 +11,14 @@ module Data.Lens
, (//=), (!/=) -- modify -- :: (MonadState a m, Fractional b) => Lens a b -> b -> m b
, (&&=), (!&&=) -- modify -- :: MonadState a m => Lens a Bool -> Bool -> m Bool
, (||=), (!||=) -- modify -- :: MonadState a m => Lens a Bool -> Bool -> m Bool
, focus
) where

import Control.Comonad.Trans.Store
import Control.Monad.State
import Data.Functor.Identity
import Data.Lens.Common
import Data.Lens.Lazy (focus)

-- * State actions

Expand Down
6 changes: 3 additions & 3 deletions data-lens-fd.cabal
@@ -1,6 +1,6 @@
name: data-lens-fd
category: Control, Comonads
version: 1.8.0.3
version: 2.0
license: BSD3
cabal-version: >= 1.6
license-file: LICENSE
Expand All @@ -26,8 +26,8 @@ library
base >= 4 && < 5,
mtl >= 2.0.1.0 && <= 2.1,
transformers >= 0.2 && < 0.3,
data-lens >= 1.8 && < 1.9,
comonad-transformers >= 1.8 && < 1.9
data-lens >= 2.0 && < 2.1,
comonad-transformers >= 2.0 && < 2.1

exposed-modules:
Data.Lens
Expand Down

0 comments on commit 39583fb

Please sign in to comment.