cheapskate 0.1.1 → 0.1.1.1
raw patch · 3 files changed
+11/−4 lines, 3 filesdep ~containersPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: containers
API changes (from Hackage documentation)
- Cheapskate: walk :: (Data a, Data b) => (a -> a) -> (b -> b)
+ Cheapskate: walk :: (Data a, Data b) => (a -> a) -> b -> b
- Cheapskate: walkM :: (Data a, Data b, Monad m) => (a -> m a) -> (b -> m b)
+ Cheapskate: walkM :: (Data a, Data b, Monad m) => (a -> m a) -> b -> m b
Files
- README.markdown +3/−0
- changelog +6/−0
- cheapskate.cabal +2/−4
README.markdown view
@@ -1,5 +1,8 @@ # Cheapskate +*Note: This library is unmaintained (by me anyway). I recommend+using cmark.*+ This is an experimental Markdown processor in pure Haskell. (A cheapskate is always in search of the best markdown.) It aims to process Markdown efficiently and in the most forgiving possible way. It is about seven times faster than
changelog view
@@ -1,3 +1,9 @@+cheapskate 0.1.1.1 (05 Nov 2018)++ * Bump upper version bound on containers library+ (Justin Le).+ * Remove invalid profiling options (Michael Morgan).+ cheapskate 0.1.1 (01 Aug 2017) * Added NFData and Generic instances for basic types
cheapskate.cabal view
@@ -1,5 +1,5 @@ name: cheapskate-version: 0.1.1+version: 0.1.1.1 synopsis: Experimental markdown processor. description: This is an experimental Markdown processor in pure Haskell. It aims to process Markdown efficiently and in@@ -42,7 +42,7 @@ Cheapskate.ParserCombinators Paths_cheapskate build-depends: base >=4.4 && <5,- containers >=0.4 && <0.6,+ containers >=0.4 && <0.7, mtl >=2.1 && <2.3, text >= 0.9 && < 1.3, blaze-html >=0.6 && < 0.10,@@ -64,7 +64,6 @@ text >= 0.9 && < 1.3 default-language: Haskell2010 ghc-options: -Wall -fno-warn-unused-do-bind- ghc-prof-options: -auto-exported -rtsopts executable cheapskate-dingus main-is: cheapskate-dingus.hs@@ -78,4 +77,3 @@ else Buildable: False ghc-options: -Wall -fno-warn-unused-do-bind- ghc-prof-options: -auto-exported -rtsopts