packages feed

http-types 0.1 → 0.1.1

raw patch · 2 files changed

+3/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Network.HTTP.Types: HttpVersion :: !Int -> !Int -> HttpVersion
+ Network.HTTP.Types: Status :: Int -> ByteString -> Status
+ Network.HTTP.Types: httpMajor :: HttpVersion -> !Int
+ Network.HTTP.Types: httpMinor :: HttpVersion -> !Int
+ Network.HTTP.Types: statusCode :: Status -> Int
+ Network.HTTP.Types: statusMessage :: Status -> ByteString

Files

Network/HTTP/Types.hs view
@@ -19,12 +19,12 @@ , stringToMethodADT , methodADTToString   -- * Versions-, HttpVersion(httpMajor, httpMinor)+, HttpVersion(..) , http09 , http10 , http11   -- * Status-, Status(statusCode, statusMessage)+, Status(..) , status200, statusOK , status201, statusCreated , status301, statusMovedPermanently
http-types.cabal view
@@ -7,7 +7,7 @@ -- The package version. See the Haskell package versioning policy -- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for -- standards guiding when and how versions should be incremented.-Version:             0.1+Version:             0.1.1  -- A short (one-line) description of the package. Synopsis:            Generic HTTP types for Haskell (for both client and server code).