orchestrate 0.2.0.0 → 0.2.0.1
raw patch · 3 files changed
+6/−9 lines, 3 filesdep ~basedep ~errors
Dependency ranges changed: base, errors
Files
- orchestrate.cabal +5/−6
- src/Database/Orchestrate/Types.hs +0/−1
- src/Database/Orchestrate/Utils.hs +1/−2
orchestrate.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: orchestrate-version: 0.2.0.0+version: 0.2.0.1 synopsis: An API client for http://orchestrate.io/. -- description: license: Apache-2.0@@ -34,7 +34,7 @@ , Database.Orchestrate.Utils -- other-modules: -- other-extensions: - build-depends: base >=4.7 && <4.8+ build-depends: base >=4.7 && <5 , text , wreq , http-client@@ -57,7 +57,7 @@ ghc-options: -threaded -rtsopts hs-source-dirs: specs main-is: Specs.hs- build-depends: base == 4.7.*+ build-depends: base , orchestrate , QuickCheck , smallcheck@@ -67,12 +67,11 @@ , aeson , bytestring , wreq- , errors+ , errors < 2.0 default-language: Haskell2010 if flag(network-specs) cpp-options: -DNETWORK_SPECS -source-repository this+source-repository head type: git location: git://github.com/erochest/orchestrate.git- tag: 0.2.0.0
src/Database/Orchestrate/Types.hs view
@@ -121,7 +121,6 @@ ) where -import Control.Applicative import Control.Error import qualified Control.Exception as Ex import Control.Lens hiding ((.=))
src/Database/Orchestrate/Utils.hs view
@@ -59,7 +59,6 @@ ) where -import Control.Applicative import Control.Error import Control.Exception as Ex import Control.Lens@@ -123,7 +122,7 @@ -- | Adds the API key to a set of wreq 'Options'. withAuth :: APIKey -> Options -> Options-withAuth key o = o & auth .~ basicAuth (E.encodeUtf8 key) ""+withAuth key o = o & auth .~ Just (basicAuth (E.encodeUtf8 key) "") -- | Builds a URL from its assembled parts. buildUrl :: Monad m