packages feed

cmark 0.5.4 → 0.5.5

raw patch · 4 files changed

+15/−6 lines, 4 filesdep ~blaze-htmlPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: blaze-html

API changes (from Hackage documentation)

Files

README.md view
@@ -3,7 +3,7 @@  This package provides Haskell bindings for [libcmark], the reference parser for [CommonMark], a fully specified variant of Markdown.-It includes sources for [libcmark] (version 0.27.0, implementing+It includes sources for [libcmark] (version 0.27.1, implementing version 0.27 of the spec) and does not require prior installation of the C library. 
cbits/cmark_version.h view
@@ -1,7 +1,7 @@ #ifndef CMARK_VERSION_H #define CMARK_VERSION_H -#define CMARK_VERSION ((0 << 16) | (27 << 8)  | 0)-#define CMARK_VERSION_STRING "0.27.0"+#define CMARK_VERSION ((0 << 16) | (27 << 8)  | 1)+#define CMARK_VERSION_STRING "0.27.1"  #endif
changelog view
@@ -1,3 +1,12 @@+cmark 0.5.5 (31 Jan 2017)++  * Update to cmark 0.27.1.+  * Update version bounds for dependencies.++cmark 0.5.4 (18 Nov 2016)++  * Update to cmark 0.27.0.+ cmark 0.5.3.1 (16 Jul 2016)    * Remove unnecessary typedef that caused problems with the build
cmark.cabal view
@@ -1,12 +1,12 @@ name:                cmark-version:             0.5.4+version:             0.5.5 synopsis:            Fast, accurate CommonMark (Markdown) parser and renderer description:   This package provides Haskell bindings for   <https://github.com/jgm/cmark libcmark>, the reference   parser for <http://commonmark.org CommonMark>, a fully   specified variant of Markdown. It includes sources for-  libcmark (0.26.0) and does not require prior installation of the+  libcmark (0.27.1) and does not require prior installation of the   C library.  homepage:            https://github.com/jgm/cmark-hs@@ -96,7 +96,7 @@                     cheapskate >= 0.1 && < 0.2,                     markdown >= 0.1 && < 0.2,                     discount >= 0.1 && < 0.2,-                    blaze-html >= 0.7 && < 0.9+                    blaze-html >= 0.7 && < 0.10   ghc-options:      -O2   default-language: Haskell2010