Skip to content

Commit

Permalink
Merge pull request #96 from ondrap/master
Browse files Browse the repository at this point in the history
Fix compilation with older compilers. Version bump.
  • Loading branch information
Ondrej Palkovsky authored Apr 15, 2017
2 parents 4f66f2e + bd69520 commit 1b64b0e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Network/Wreq/Internal/Types.hs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ module Network.Wreq.Internal.Types

import Control.Exception (Exception)
import Data.IORef (IORef)
import Data.Monoid ((<>))
import Data.Monoid ((<>), mconcat)
import Data.Text (Text)
import Data.Time.Clock (UTCTime)
import Data.Typeable (Typeable)
Expand Down
2 changes: 1 addition & 1 deletion Network/Wreq/Types.hs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module Network.Wreq.Types
import Control.Lens ((&), (.~))
import Data.Aeson (Value, encode)
import Data.Int (Int8, Int16, Int32, Int64)
import Data.Word (Word8, Word16, Word32, Word64)
import Data.Word (Word, Word8, Word16, Word32, Word64)
import Network.HTTP.Client (Request)
import Network.HTTP.Client.MultipartFormData (Part, formDataBody)
import Network.Wreq.Internal.Types
Expand Down
2 changes: 1 addition & 1 deletion wreq.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: wreq
version: 0.5.0.0
version: 0.5.0.1
synopsis: An easy-to-use HTTP client library.
description:
.
Expand Down

0 comments on commit 1b64b0e

Please sign in to comment.