diff options
author | Alec Theriault <alec.theriault@gmail.com> | 2019-01-31 15:37:58 -0800 |
---|---|---|
committer | Alec Theriault <alec.theriault@gmail.com> | 2019-02-03 09:11:05 -0800 |
commit | a0973d09a5b4f6a08b35c0b3de371c895d7d847a (patch) | |
tree | 6e1ea9e3334673ab73e6afff4683dcd50a59568f /haddock-library/haddock-library.cabal | |
parent | bf07847e45356024e10d1a325f015ac53544ea85 (diff) |
Remove `Documentation.Haddock.Utf8`
The circumstances under which this module appeared are completely gone.
The Hyperlinker backend no longer needs this module (it uses the more
efficient `Encoding` module from `ghc`).
Why no deprecation? Because this module really shouldn't exist!
- It isn't used in `haddock-library`/`haddock-api` anymore
- It was copy pasted directly from `utf8-string`
- Folks seeking a boot-lib only solution can use `ghc`'s `Encoding`
Diffstat (limited to 'haddock-library/haddock-library.cabal')
-rw-r--r-- | haddock-library/haddock-library.cabal | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/haddock-library/haddock-library.cabal b/haddock-library/haddock-library.cabal index b19642ab..b24db5d4 100644 --- a/haddock-library/haddock-library.cabal +++ b/haddock-library/haddock-library.cabal @@ -1,6 +1,6 @@ cabal-version: 2.2 name: haddock-library -version: 1.7.0 +version: 1.8.0 synopsis: Library exposing some functionality of Haddock. description: Haddock is a documentation-generation tool for Haskell @@ -45,7 +45,6 @@ library Documentation.Haddock.Markup Documentation.Haddock.Parser Documentation.Haddock.Types - Documentation.Haddock.Utf8 other-modules: Documentation.Haddock.Parser.Util @@ -71,8 +70,6 @@ test-suite spec Documentation.Haddock.Parser.UtilSpec Documentation.Haddock.ParserSpec Documentation.Haddock.Types - Documentation.Haddock.Utf8 - Documentation.Haddock.Utf8Spec build-depends: , base-compat ^>= 0.9.3 || ^>= 0.10.0 |