packages feed

commonmark-extensions 0.2.0.3 → 0.2.0.4

raw patch · 3 files changed

+11/−5 lines, 3 filesdep ~commonmarkPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: commonmark

API changes (from Hackage documentation)

Files

changelog.md view
@@ -1,5 +1,11 @@ # Changelog for commonmark-extensions +## 0.2.0.4++- Add a test for autolinks (#66).+- Require commonmark 0.1.1.2 (otherwise autolinks don't work+  properly).+ ## 0.2.0.3  - Add some new test examples to the autolinks extension spec (#65).
commonmark-extensions.cabal view
@@ -1,5 +1,5 @@ name:           commonmark-extensions-version:        0.2.0.3+version:        0.2.0.4 synopsis:       Pure Haskell commonmark parser. description:    This library provides some useful extensions to core commonmark@@ -55,7 +55,7 @@     , containers     , transformers     , parsec-    , commonmark >= 0.1.1 && < 0.2+    , commonmark >= 0.1.1.2 && < 0.2     -- for extensions:     , emojis >= 0.1 && < 0.2   exposed-modules:@@ -104,7 +104,7 @@   main-is:         benchmark.hs   hs-source-dirs:  benchmark   build-depends:-       commonmark >= 0.1 && < 0.2+       commonmark >= 0.1.1.2 && < 0.2      , commonmark-extensions      , base >= 4.9 && < 5      , text
test/autolinks.md view
@@ -164,7 +164,7 @@   ```````````````````````````````` example-[a link](http://www.google.com/)stuff+[a link](http://www.google.com/)stuff? .-<p><a href="http://www.google.com/">a link</a>stuff</p>+<p><a href="http://www.google.com/">a link</a>stuff?</p> ````````````````````````````````