hyphenation 0.2.1.8 → 0.2.2
raw patch · 3 files changed
+9/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.markdown +3/−0
- hyphenation.cabal +2/−2
- src/Text/Hyphenation/Language.hs +4/−0
+ CHANGELOG.markdown view
@@ -0,0 +1,3 @@+0.2.2+-----+* Flagged `Text.Hyphenation.Language` as `Trustworthy`. It has benign side-effects that cause it to read hyphenation files lazily from the installed `data-dir` but nothing else.
hyphenation.cabal view
@@ -1,6 +1,6 @@ name: hyphenation category: Text-version: 0.2.1.8+version: 0.2.2 license: BSD3 cabal-version: >= 1.8 license-file: LICENSE@@ -32,7 +32,7 @@ data-dir: data data-files: *.hyp.txt, *.pat.txt, *.lic.txt, *.chr.txt-extra-source-files: .travis.yml+extra-source-files: .travis.yml CHANGELOG.markdown source-repository head type: git
src/Text/Hyphenation/Language.hs view
@@ -1,3 +1,7 @@+{-# LANGUAGE CPP #-}+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702+{-# LANGUAGE Trustworthy #-}+#endif ----------------------------------------------------------------------------- -- | -- Module : Text.Hyphenation.Language