diff --git a/casr-logbook.cabal b/casr-logbook.cabal
--- a/casr-logbook.cabal
+++ b/casr-logbook.cabal
@@ -1,5 +1,5 @@
 name:               casr-logbook
-version:            0.0.1
+version:            0.0.2
 license:            OtherLicense
 license-file:       LICENSE
 author:             Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,3 +1,7 @@
+0.0.2
+
+* Fix function name, `printMarkdown`.
+
 0.0.1
 
 * Initial release
@@ -5,4 +9,3 @@
 
   These data structures are open to change as more is understood about the necessity of logbooks.
   In particular, logging the particulars of IFR flights are currently not accounted for.
-
diff --git a/src/Data/Aviation/Casr/Logbook/Printer/Markdown.hs b/src/Data/Aviation/Casr/Logbook/Printer/Markdown.hs
--- a/src/Data/Aviation/Casr/Logbook/Printer/Markdown.hs
+++ b/src/Data/Aviation/Casr/Logbook/Printer/Markdown.hs
@@ -1,6 +1,6 @@
 module Data.Aviation.Casr.Logbook.Printer.Markdown (
   Markdown(..)
-, printMarkdownFile
+, printMarkdown
 , writeMarkdownFile
 ) where
 
@@ -9,11 +9,11 @@
     s
     -> String
 
-printMarkdownFile ::
+printMarkdown ::
   Markdown s =>
   s
   -> IO ()
-printMarkdownFile =
+printMarkdown =
   putStrLn . markdown
 
 writeMarkdownFile ::
