diff options
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | hakyll.cabal | 10 | ||||
-rw-r--r-- | stack.yaml | 17 |
3 files changed, 23 insertions, 12 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index cb0290f..6cc591e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ title: Releases # Releases +## Hakyll 4.12.4.0 (2018-08-13) + +- Bump yaml to 0.10 +- Bump file-embed to 0.0.11 +- Bump QuickCheck to 2.12 +- Use makeRelativeToProject with embedFile for stack ghci (contribution by + Michael Sloan) + ## Hakyll 4.12.3.0 (2018-05-29) - Bump tasty to 1.1 diff --git a/hakyll.cabal b/hakyll.cabal index 8991794..d818e75 100644 --- a/hakyll.cabal +++ b/hakyll.cabal @@ -1,5 +1,5 @@ Name: hakyll -Version: 4.12.3.0 +Version: 4.12.4.0 Synopsis: A static website compiler library Description: @@ -187,9 +187,9 @@ Library time-locale-compat >= 0.1 && < 0.2, unordered-containers >= 0.2 && < 0.3, vector >= 0.11 && < 0.13, - yaml >= 0.8.11 && < 0.10, + yaml >= 0.8.11 && < 0.11, optparse-applicative >= 0.12 && < 0.15, - file-embed >= 0.0.10.1 && < 0.0.11 + file-embed >= 0.0.10.1 && < 0.0.12 If flag(previewServer) Build-depends: @@ -259,7 +259,7 @@ Test-suite hakyll-tests Build-Depends: hakyll, - QuickCheck >= 2.8 && < 2.12, + QuickCheck >= 2.8 && < 2.13, tasty >= 0.11 && < 1.2, tasty-hunit >= 0.9 && < 0.11, tasty-quickcheck >= 0.8 && < 0.11, @@ -270,7 +270,7 @@ Test-suite hakyll-tests filepath >= 1.0 && < 1.5, text >= 0.11 && < 1.3, unordered-containers >= 0.2 && < 0.3, - yaml >= 0.8.11 && < 0.10 + yaml >= 0.8.11 && < 0.11 If flag(previewServer) Cpp-options: @@ -1,5 +1,4 @@ -resolver: lts-11.7 -extra-package-dbs: [] +resolver: nightly-2018-08-29 save-hackage-creds: false flags: @@ -24,8 +23,12 @@ build: haddock-deps: false extra-deps: -- 'pandoc-2.2' -- 'pandoc-types-1.17.4.2' -- 'pandoc-citeproc-0.14.3.1' -- 'tasty-1.1.0.1' -- 'fsnotify-0.3.0.0' +- file-embed-0.0.11 +- QuickCheck-2.12.4 +- yaml-0.10.1.1 + +- pandoc-2.2.3.2 +- pandoc-citeproc-0.14.3.1 +- HsYAML-0.1.1.2 +- aeson-1.3.1.1 +- rfc5051-0.1.0.3 |