Remove deprecated modules (end of 2019 is passed)

This commit is contained in:
Oleg Grenrus 2020-01-23 13:14:24 +02:00
parent 3bf4b100a8
commit 8fc47edf99
4 changed files with 5 additions and 17 deletions

View file

@ -52,6 +52,11 @@
for cross-compiling. The benefit is small, as the doctests
can be run other ways too (though not so conviniently).
- *servant* Remove deprecated modules [1268#](https://github.com/haskell-servant/servant/pull/1268)
- `Servant.Utils.Links` is `Servant.Links`
- `Servant.API.Internal.Test.ComprehensiveAPI` is `Servant.Test.ComprehensiveAPI`
### Other changes
- *servant-client* *servant-client-core* *servant-http-streams* Fix Verb with headers checking content type differently [#1200](https://github.com/haskell-servant/servant/issues/1200) [#1204](https://github.com/haskell-servant/servant/pull/1204)

View file

@ -74,11 +74,6 @@ library
exposed-modules:
Servant.Links
-- Deprecated modules, to be removed in late 2019
exposed-modules:
Servant.Utils.Links
Servant.API.Internal.Test.ComprehensiveAPI
-- Bundled with GHC: Lower bound to not force re-installs
-- text and mtl are bundled starting with GHC-8.4
--

View file

@ -1,6 +0,0 @@
module Servant.API.Internal.Test.ComprehensiveAPI
{-# DEPRECATED "Use Servant.TestComprehensiveAPI" #-}
( module Servant.Test.ComprehensiveAPI )
where
import Servant.Test.ComprehensiveAPI

View file

@ -1,6 +0,0 @@
module Servant.Utils.Links
{-# DEPRECATED "Use Servant.Links." #-}
( module Servant.Links )
where
import Servant.Links