packages feed

bloodhound 0.20.0.1 → 0.20.0.2

raw patch · 2 files changed

+3/−3 lines, 2 files

Files

bloodhound.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           bloodhound-version:        0.20.0.1+version:        0.20.0.2 synopsis:       Elasticsearch client library for Haskell description:    Elasticsearch made awesome for Haskell hackers category:       Database, Search
src/Database/Bloodhound/Internal/Client/BHRequest.hs view
@@ -110,7 +110,7 @@     bhRequestEndpoint :: Endpoint,     bhRequestBody :: Maybe BL.ByteString   }-  deriving stock (Show)+  deriving stock (Eq, Show)  -- | 'BHRequest' with a body mkFullRequest :: NHTM.Method -> Endpoint -> BL.ByteString -> BHRequest body@@ -132,7 +132,7 @@  -- | Result of a 'BHRequest' newtype BHResponse body = BHResponse {getResponse :: Network.HTTP.Client.Response BL.ByteString}-  deriving stock (Eq, Show)+  deriving stock (Show)  -- | Result of a 'parseEsResponse' type ParsedEsResponse a = Either EsError a