diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,16 @@
 # Changelog for commonmark-pandoc
 
+## 0.3
+
+  * Define Applicative instances of IsBlock, IsInline etc.
+    (Ashley Yakeley).
+
+  * Track wikilinks with a class instead of the title (Evan Silberman).
+    The use of `title="wikilink"` in HTML output likely traces back to
+    Pandoc's hijacking of the title attribute for this purpose back when
+    Pandoc links didn't have Attrs. A coordinated change in Pandoc moves
+    this more appropriately into a class.
+
 ## 0.2.3
 
 - Track wikilinks with a class instead of the title (Evan
diff --git a/commonmark-pandoc.cabal b/commonmark-pandoc.cabal
--- a/commonmark-pandoc.cabal
+++ b/commonmark-pandoc.cabal
@@ -1,5 +1,5 @@
 name:           commonmark-pandoc
-version:        0.2.3
+version:        0.3
 synopsis:       Bridge between commonmark and pandoc AST.
 description:    This library provides typeclasses for rendering
                 commonmark to Pandoc types.
@@ -27,7 +27,7 @@
       src
   build-depends:
       base >= 4.9 && <5
-    , commonmark >= 0.2.4.1 && < 0.3
+    , commonmark >= 0.3 && < 0.4
     , commonmark-extensions >= 0.2.5 && < 0.3
     , pandoc-types >= 1.21 && < 1.24
     , text
diff --git a/src/Commonmark/Pandoc.hs b/src/Commonmark/Pandoc.hs
--- a/src/Commonmark/Pandoc.hs
+++ b/src/Commonmark/Pandoc.hs
@@ -5,6 +5,7 @@
 {-# LANGUAGE MultiParamTypeClasses      #-}
 {-# LANGUAGE OverloadedStrings          #-}
 {-# LANGUAGE UndecidableInstances       #-}
+{-# LANGUAGE MonoLocalBinds             #-}
 
 module Commonmark.Pandoc
   ( Cm(..)
