Remove deprecated modules (end of 2019 is passed)
This commit is contained in:
parent
3bf4b100a8
commit
8fc47edf99
4 changed files with 5 additions and 17 deletions
|
@ -52,6 +52,11 @@
|
||||||
for cross-compiling. The benefit is small, as the doctests
|
for cross-compiling. The benefit is small, as the doctests
|
||||||
can be run other ways too (though not so conviniently).
|
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
|
### 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)
|
- *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)
|
||||||
|
|
|
@ -74,11 +74,6 @@ library
|
||||||
exposed-modules:
|
exposed-modules:
|
||||||
Servant.Links
|
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
|
-- Bundled with GHC: Lower bound to not force re-installs
|
||||||
-- text and mtl are bundled starting with GHC-8.4
|
-- text and mtl are bundled starting with GHC-8.4
|
||||||
--
|
--
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
module Servant.API.Internal.Test.ComprehensiveAPI
|
|
||||||
{-# DEPRECATED "Use Servant.TestComprehensiveAPI" #-}
|
|
||||||
( module Servant.Test.ComprehensiveAPI )
|
|
||||||
where
|
|
||||||
|
|
||||||
import Servant.Test.ComprehensiveAPI
|
|
|
@ -1,6 +0,0 @@
|
||||||
module Servant.Utils.Links
|
|
||||||
{-# DEPRECATED "Use Servant.Links." #-}
|
|
||||||
( module Servant.Links )
|
|
||||||
where
|
|
||||||
|
|
||||||
import Servant.Links
|
|
Loading…
Reference in a new issue