postgres-embedded 0.1.4 → 0.1.5
raw patch · 2 files changed
+3/−5 lines, 2 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
postgres-embedded.cabal view
@@ -1,5 +1,5 @@ name: postgres-embedded-version: 0.1.4+version: 0.1.5 description: Library for easily running embedded PostgreSQL server for tests homepage: https://github.com/ilya-murzinov/postgres-embedded license: MIT@@ -18,7 +18,7 @@ other-modules: Database.PostgreSQL.Embedded.Postgres , Database.PostgreSQL.Embedded.Download , Database.PostgreSQL.Embedded.Types- build-depends: base >= 4.7 && < 5+ build-depends: base >= 4 && < 5 , directory , filepath , shell-conduit
src/Database/PostgreSQL/Embedded/Postgres.hs view
@@ -6,9 +6,7 @@ import Control.Concurrent (threadDelay) import Control.Exception (SomeException, try)-import Data.Conduit.Shell (grep, rm, run, shell,- ($|))-import Data.Conduit.Shell.Segments (strings)+import Data.Conduit.Shell (rm, run, shell) import Data.List (isInfixOf) import Data.Monoid ((<>)) import System.FilePath.Posix ((</>))