file-embed 0.0.11 → 0.0.11.1
raw patch · 3 files changed
+13/−3 lines, 3 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- ChangeLog.md +6/−0
- Data/FileEmbed.hs +5/−1
- file-embed.cabal +2/−2
ChangeLog.md view
@@ -1,3 +1,9 @@+# ChangeLog for file-embed++## 0.0.11.1++* Support GHC 8.10+ ## 0.0.11 * embedDirListing [#26](https://github.com/snoyberg/file-embed/pull/26)
Data/FileEmbed.hs view
@@ -143,7 +143,11 @@ qAddDependentFile $ _root ++ '/' : path #endif exp' <- bsToExp bs- return $! TupE [LitE $ StringL path, exp']+ return $! TupE+#if MIN_VERSION_template_haskell(2,16,0)+ $ map Just+#endif+ [LitE $ StringL path, exp'] bsToExp :: B.ByteString -> Q Exp #if MIN_VERSION_template_haskell(2, 5, 0)
file-embed.cabal view
@@ -1,5 +1,5 @@ name: file-embed-version: 0.0.11+version: 0.0.11.1 license: BSD3 license-file: LICENSE author: Michael Snoyman <michael@snoyman.com>@@ -18,7 +18,7 @@ README.md library- build-depends: base >= 4 && < 5+ build-depends: base >= 4.9.1 && < 5 , bytestring >= 0.9.1.4 , directory >= 1.0.0.3 , template-haskell