Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Relax snap constraint #1

Merged
merged 2 commits into from Jun 19, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions snaplet-acid-state.cabal
@@ -1,5 +1,5 @@
name: snaplet-acid-state
version: 0.2
version: 0.2.1
synopsis: acid-state snaplet for Snap Framework
description: This snaplet makes it easy to use acid-state in a Snap
application.
Expand Down Expand Up @@ -27,7 +27,7 @@ Library
build-depends:
acid-state >= 0.6 && < 0.7,
base >= 4 && < 5,
snap >= 0.6 && < 0.9,
snap >= 0.6 && < 0.10,
text >= 0.11 && < 0.12

ghc-options: -Wall -fwarn-tabs -funbox-strict-fields
Expand Down
2 changes: 1 addition & 1 deletion src/Snap/Snaplet/AcidState.hs
Expand Up @@ -50,7 +50,7 @@ newtype Acid st = Acid


------------------------------------------------------------------------------
-- | Initializer that stores the state in the "state/[typeOf state]/"
-- | Initializer that stores the state in the \"state\/[typeOf state]\/\"
-- directory.
acidInit :: (A.IsAcidic st, Typeable st)
=> st
Expand Down