diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,11 @@
 # Changelog for commonmark-extensions
 
+## 0.2.0.4
+
+- Add a test for autolinks (#66).
+- Require commonmark 0.1.1.2 (otherwise autolinks don't work
+  properly).
+
 ## 0.2.0.3
 
 - Add some new test examples to the autolinks extension spec (#65).
diff --git a/commonmark-extensions.cabal b/commonmark-extensions.cabal
--- a/commonmark-extensions.cabal
+++ b/commonmark-extensions.cabal
@@ -1,5 +1,5 @@
 name:           commonmark-extensions
-version:        0.2.0.3
+version:        0.2.0.4
 synopsis:       Pure Haskell commonmark parser.
 description:
    This library provides some useful extensions to core commonmark
@@ -55,7 +55,7 @@
     , containers
     , transformers
     , parsec
-    , commonmark >= 0.1.1 && < 0.2
+    , commonmark >= 0.1.1.2 && < 0.2
     -- for extensions:
     , emojis >= 0.1 && < 0.2
   exposed-modules:
@@ -104,7 +104,7 @@
   main-is:         benchmark.hs
   hs-source-dirs:  benchmark
   build-depends:
-       commonmark >= 0.1 && < 0.2
+       commonmark >= 0.1.1.2 && < 0.2
      , commonmark-extensions
      , base >= 4.9 && < 5
      , text
diff --git a/test/autolinks.md b/test/autolinks.md
--- a/test/autolinks.md
+++ b/test/autolinks.md
@@ -164,7 +164,7 @@
 
 
 ```````````````````````````````` example
-[a link](http://www.google.com/)stuff
+[a link](http://www.google.com/)stuff?
 .
-<p><a href="http://www.google.com/">a link</a>stuff</p>
+<p><a href="http://www.google.com/">a link</a>stuff?</p>
 ````````````````````````````````
