diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
 # commonmark-cli
 
+[![hackage release](https://img.shields.io/hackage/v/commonmark-cli.svg?label=hackage)](http://hackage.haskell.org/package/commonmark-cli)
+
 A command-line tool for converting and syntax-highlighting
 commonmark documents.  See the output of
 `commonmark-cli --help` for basic usage.
diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,10 @@
 # Changelog for commonmark-cli
 
-## Unreleased changes
+## 0.1.0.1
+
+- Allow compilation with commonmark-pandoc 0.2.0.0,
+  commonmark-extensions 0.2.0.0.
+
+## 0.1.0.0
+
+- Initial release
diff --git a/commonmark-cli.cabal b/commonmark-cli.cabal
--- a/commonmark-cli.cabal
+++ b/commonmark-cli.cabal
@@ -1,5 +1,5 @@
 name:           commonmark-cli
-version:        0.1.0.0
+version:        0.1.0.1
 synopsis:       Command-line commonmark converter and highlighter.
 description:    This package provides a command-line tool, `commonmark`,
                 for converting and syntax-highlighting commonmark documents.
@@ -30,8 +30,8 @@
   ghc-options: -threaded -rtsopts
   build-depends: base >=4.7 && <5
                , commonmark >= 0.1 && < 0.2
-               , commonmark-extensions >= 0.1 && < 0.2
-               , commonmark-pandoc >= 0.1 && < 0.2
+               , commonmark-extensions >= 0.1 && < 0.3
+               , commonmark-pandoc >= 0.1 && < 0.3
                , pandoc-types
                , aeson
                , bytestring
diff --git a/src/convert.hs b/src/convert.hs
--- a/src/convert.hs
+++ b/src/convert.hs
@@ -122,6 +122,7 @@
                IsBlock il bl, IsInline il,
                HasPipeTable il bl,
                HasMath il,
+               HasQuoted il,
                HasEmoji il,
                HasSpan il,
                ToPlainText il,
@@ -169,7 +170,7 @@
 specFromExtensionNames ::
  (Monad m, Typeable m, Typeable bl, Typeable il,
   IsBlock il bl, IsInline il,
-  HasPipeTable il bl, HasMath il, HasEmoji il,
+  HasPipeTable il bl, HasMath il, HasQuoted il, HasEmoji il,
   HasSpan il,
   ToPlainText il,
   HasStrikethrough il,
