diff --git a/snap.cabal b/snap.cabal
--- a/snap.cabal
+++ b/snap.cabal
@@ -1,5 +1,5 @@
 name:           snap
-version:        0.11.2.2
+version:        0.11.3
 synopsis:       Top-level package for the Snap Web Framework
 description:
     This is the top-level package for the official Snap Framework libraries.
@@ -155,7 +155,9 @@
     dlist                     >= 0.5      && < 0.6,
     errors                    >= 1.4      && < 1.5,
     filepath                  >= 1.1      && < 1.4,
-    hashable                  >= 1.2      && < 1.3,
+    -- note: freeze hashable at 1.1, 1.2 is broken (segfaults) consider
+    -- changing once https://github.com/tibbe/hashable/issues/60 is fixed.
+    hashable                  >= 1.1      && < 1.2,
     heist                     >= 0.11     && < 0.12,
     logict                    >= 0.4.2    && < 0.7,
     mtl                       >  2.0      && < 2.2,
@@ -166,8 +168,6 @@
     snap-server               >= 0.9      && < 0.10,
     stm                       >= 2.2      && < 2.5,
     syb                       >= 0.1      && < 0.5,
-    -- Without the tagged dependency we reach backtrack limits
-    tagged                    < 0.5,
     text                      >= 0.11     && < 0.12,
     time                      >= 1.1      && < 1.5,
     transformers              >= 0.2      && < 0.4,
@@ -226,6 +226,9 @@
     directory           >= 1.0     && < 1.3,
     directory-tree      >= 0.10    && < 0.12,
     filepath            >= 1.1     && < 1.4,
+    -- note: freeze hashable at 1.1, 1.2 is broken (segfaults) consider
+    -- changing once https://github.com/tibbe/hashable/issues/60 is fixed.
+    hashable            >= 1.1     && < 1.2,
     old-time            >= 1.0     && < 1.2,
     snap-server         >= 0.9     && < 0.11,
     template-haskell    >= 2.2     && < 2.9,
diff --git a/src/Snap/Snaplet/Auth/SpliceHelpers.hs b/src/Snap/Snaplet/Auth/SpliceHelpers.hs
--- a/src/Snap/Snaplet/Auth/SpliceHelpers.hs
+++ b/src/Snap/Snaplet/Auth/SpliceHelpers.hs
@@ -2,6 +2,7 @@
 {-# LANGUAGE ExistentialQuantification #-}
 {-# LANGUAGE FlexibleContexts #-}
 {-# LANGUAGE OverloadedStrings #-}
+{-# LANGUAGE RecordWildCards #-}
 
 {-|
 
