casr-logbook 0.0.1 → 0.0.2
raw patch · 3 files changed
+8/−5 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Data.Aviation.Casr.Logbook.Printer.Markdown: printMarkdownFile :: Markdown s => s -> IO ()
+ Data.Aviation.Casr.Logbook.Printer.Markdown: printMarkdown :: Markdown s => s -> IO ()
Files
casr-logbook.cabal view
@@ -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ɐɥ>
changelog view
@@ -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.-
src/Data/Aviation/Casr/Logbook/Printer/Markdown.hs view
@@ -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 ::