diff --git a/Data/AttoLisp.hs b/Data/AttoLisp.hs
--- a/Data/AttoLisp.hs
+++ b/Data/AttoLisp.hs
@@ -363,7 +363,7 @@
 -- @data Foo = Foo Int deriving (Eq, Show)
 --
 -- parseFoo :: Lisp -> 'Parser' Foo
---parseFoo = struct \"foo\" Foo
+-- parseFoo = struct \"foo\" Foo
 --
 -- test = 'parseMaybe' parseFoo val == Just (Foo 23)
 --  where val = 'List' ['Symbol' \"foo\", 'Number' 23]
@@ -633,13 +633,13 @@
 The following characters are special:
 
   - whitespace: space, tab, newline, linefeed, return, page
-  
+
   - terminating: ( ) , ` ' " ;
 
   - escaping: \  and  |
 
 All remaining characters can be part of a symbol.  If a symbol looks
-like an number then it is one.  Otherwise it's just a symbol.
+like a number then it is one.  Otherwise it's just a symbol.
 
 -}
 
diff --git a/atto-lisp.cabal b/atto-lisp.cabal
--- a/atto-lisp.cabal
+++ b/atto-lisp.cabal
@@ -1,5 +1,5 @@
 name:                   atto-lisp
-version:                0.2.2.1
+version:                0.2.2.2
 license:                BSD3
 license-file:           LICENSE
 author:                 Thomas Schilling <nominolo@googlemail.com>
@@ -17,7 +17,7 @@
 
 library
   build-depends:
-    attoparsec    >= 0.10    && < 0.13,
+    attoparsec    >= 0.10    && < 0.14,
     base          >= 4.2     && < 5,
     blaze-builder >= 0.3     && < 0.5,
     blaze-textual >= 0.1     && < 0.3,
@@ -35,12 +35,12 @@
 Test-Suite test
     Type:       exitcode-stdio-1.0
     Main-is:    test-attolisp.hs
-    Hs-Source-Dirs: test 
+    Hs-Source-Dirs: test
     Build-depends: atto-lisp
                  , attoparsec
                  , base
                  , bytestring
-                 , text 
+                 , text
                  , HUnit
                  , test-framework
                  , test-framework-hunit
diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,11 @@
+0.2.2.2
+
+ * Allow attoparsec-0.13
+
+0.2.2.1
+
+ * Allow blaze-builder 0.4 and deepseq 1.4
+
 0.2.2
 
  * Allow attoparsec-0.12.* and text-1.[12].*
diff --git a/test/test-attolisp.hs b/test/test-attolisp.hs
--- a/test/test-attolisp.hs
+++ b/test/test-attolisp.hs
@@ -6,7 +6,7 @@
 
 import Control.Applicative
 import Data.AttoLisp
-import qualified Data.Attoparsec as A
+import qualified Data.Attoparsec.ByteString as A
 import qualified Data.Text as T
 import qualified Data.Text.Encoding as T
 import qualified Data.ByteString as B
