Revert version bump, update changelog

This commit is contained in:
Alex Mason 2016-09-02 23:53:18 +10:00
parent 5bef76ed03
commit a991cbe77c
3 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@ next
---- ----
* Add `CaptureAll` combinator. Captures all of the remaining segments in a URL. * Add `CaptureAll` combinator. Captures all of the remaining segments in a URL.
* replace use of `ToByteString` with `HttpApiData` for `GetHeaders` * BACKWARDS INCOMPATIBLE replace use of `ToFromByteString` with `To/FromHttpApiData` for `GetHeaders/BuildHeadersTo`
0.8 0.8
--- ---

View file

@ -1,5 +1,5 @@
name: servant name: servant
version: 0.8.1 version: 0.8
synopsis: A family of combinators for defining webservices APIs synopsis: A family of combinators for defining webservices APIs
description: description:
A family of combinators for defining webservices APIs and serving them A family of combinators for defining webservices APIs and serving them

View file

@ -31,8 +31,8 @@ module Servant.API.ResponseHeaders
) where ) where
import Data.ByteString.Char8 as BS (pack, unlines, init) import Data.ByteString.Char8 as BS (pack, unlines, init)
import Web.HttpApiData (ToHttpApiData,toHeader import Web.HttpApiData (ToHttpApiData, toHeader
,FromHttpApiData,parseHeader) ,FromHttpApiData, parseHeader)
import qualified Data.CaseInsensitive as CI import qualified Data.CaseInsensitive as CI
import Data.Proxy import Data.Proxy
import GHC.TypeLits (KnownSymbol, symbolVal) import GHC.TypeLits (KnownSymbol, symbolVal)