docker 0.4.1.0 → 0.4.1.1
raw patch · 5 files changed
+11/−7 lines, 5 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- LICENSE +1/−1
- README.md +0/−2
- docker.cabal +1/−1
- src/Docker/Client.hs +1/−1
- tests/tests.hs +8/−2
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2016, Deni Bertovic+Copyright (c) 2014, Deni Bertovic All rights reserved.
README.md view
@@ -7,8 +7,6 @@ ## Current state -**API is still not stable.**- Supported Docker Engine Api version: `v1.24` and onwards. Anything upward of that should work since Docker versions their API.
docker.cabal view
@@ -1,5 +1,5 @@ name: docker-version: 0.4.1.0+version: 0.4.1.1 synopsis: An API client for docker written in Haskell description: See API documentation below. homepage: https://github.com/denibertovic/docker-hs
src/Docker/Client.hs view
@@ -3,7 +3,7 @@ {-| Module : Docker.Client-Copyright : (c) Deni Bertovic, 2016+Copyright : (c) Deni Bertovic, 2014 License : BSD3 Maintainer : deni@denibertovic.com Stability : experimental
tests/tests.hs view
@@ -28,6 +28,7 @@ import Network.HTTP.Client (newManager) import Network.HTTP.Client.TLS import Network.HTTP.Types.Status+import System.Environment (lookupEnv) import System.Process (system) import Docker.Client@@ -186,5 +187,10 @@ main :: IO () main = do- setup- defaultMain $ testGroup "Tests" [jsonTests, integrationTests]+ stackage <- lookupEnv "RUN_INTEGRATION_TESTS"+ case stackage of+ Nothing -> defaultMain $ testGroup "Tests" [jsonTests]+ Just _ -> do+ setup+ defaultMain $ testGroup "Tests" [jsonTests, integrationTests]+