hakyll-shortcut-links 0.1.0.0 → 0.1.0.1
raw patch · 4 files changed
+17/−8 lines, 4 filesdep ~basedep ~pandocdep ~pandoc-typesPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, pandoc, pandoc-types
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- hakyll-shortcut-links.cabal +11/−6
- src/Hakyll/ShortcutLinks.hs +1/−1
- src/Hakyll/ShortcutLinks/Parser.hs +1/−1
CHANGELOG.md view
@@ -3,6 +3,10 @@ `hakyll-shortcut-links` uses [PVP Versioning][1]. The changelog is available [on GitHub][2]. +## 0.1.0.1 — Jan 12, 2021++* Support GHC-8.10.3.+ ## 0.1.0.0 — Feb 29, 2020 * [#16](https://github.com/kowainik/hakyll-shortcut-links/issues/16):
hakyll-shortcut-links.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: hakyll-shortcut-links-version: 0.1.0.0+version: 0.1.0.1 synopsis: Use shortcut-links in markdown file for Hakyll description: Use shortcut-links in markdown file for Hakyll. See README for more details. homepage: https://github.com/kowainik/hakyll-shortcut-links@@ -9,19 +9,20 @@ license-file: LICENSE author: Veronika Romashkina, Dmitrii Kovanikov maintainer: Kowainik <xrom.xkov@gmail.com>-copyright: 2019-2020 Kowainik+copyright: 2019-2021 Kowainik category: Web, Hakyll, Markdown build-type: Simple extra-doc-files: README.md CHANGELOG.md-tested-with: GHC == 8.8.2+tested-with: GHC == 8.8.4+ GHC == 8.10.3 source-repository head type: git location: https://github.com/kowainik/hakyll-shortcut-links.git common common-options- build-depends: base >= 4.13.0.0 && < 4.14+ build-depends: base >= 4.13.0.0 && < 4.15 ghc-options: -Wall -Wcompat -Widentities@@ -37,6 +38,10 @@ if impl(ghc >= 8.8) ghc-options: -Wmissing-deriving-strategies -Werror=missing-deriving-strategies+ -fwrite-ide-info+ -hiedir=../.hie+ if impl(ghc >= 8.10)+ ghc-options: -Wunused-packages default-extensions: ConstraintKinds DeriveGeneric@@ -64,7 +69,7 @@ build-depends: hakyll ^>= 4.13 , mtl ^>= 2.2.2- , pandoc-types ^>= 1.20+ , pandoc-types >= 1.20 && < 1.23 , parsec ^>= 3.1.14 , shortcut-links ^>= 0.5.0.0 , text ^>= 1.2@@ -80,7 +85,7 @@ build-depends: hakyll-shortcut-links , hspec ^>= 2.7.1 , mtl- , pandoc ^>= 2.9+ , pandoc >= 2.9 && < 2.12 , text ghc-options: -threaded
src/Hakyll/ShortcutLinks.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE FlexibleContexts #-} {- |-Copyright: (c) 2019-2020 Kowainik+Copyright: (c) 2019-2021 Kowainik License: MPL-2.0 Maintainer: Kowainik <xrom.xkov@gmail.com>
src/Hakyll/ShortcutLinks/Parser.hs view
@@ -1,5 +1,5 @@ {- |-Copyright: (c) 2019-2020 Kowainik+Copyright: (c) 2019-2021 Kowainik License: MPL-2.0 Maintainer: Kowainik <xrom.xkov@gmail.com>