tmp-postgres 1.9.0.0 → 1.9.0.1
raw patch · 4 files changed
+6/−3 lines, 4 files
Files
- CHANGELOG.md +3/−0
- src/Database/Postgres/Temp/Internal/Config.hs +1/−1
- src/Database/Postgres/Temp/Internal/Core.hs +1/−1
- tmp-postgres.cabal +1/−1
CHANGELOG.md view
@@ -12,3 +12,6 @@ 1.9.0.0 #41 Configurable temporary directory #59 Change EnvVars to EnvironmentVariables++1.9.0.1+ Documentation fixes
src/Database/Postgres/Temp/Internal/Config.hs view
@@ -480,7 +480,7 @@ -- ^ Override the default temporary data directory by passing in -- 'CPermanent DIRECTORY' , port :: Last (Maybe Int)- -- ^ A monoid for using an existing port (via 'Just' 'PORT_NUMBER') or+ -- ^ A monoid for using an existing port (via 'Just' @PORT_NUMBER@) or -- requesting a free port (via a 'Nothing') , temporaryDirectory :: Last FilePath -- ^ The directory used to create other temporary directories. Defaults
src/Database/Postgres/Temp/Internal/Core.hs view
@@ -77,7 +77,7 @@ Left (_ :: IOError) -> threadDelay 10000 >> waitForDB logger options Right () -> return () --- | 'ProcessConfig' contains the configuration necessary for starting a+-- | 'CompleteProcessConfig' contains the configuration necessary for starting a -- process. It is essentially a stripped down 'System.Process.CreateProcess'. data CompleteProcessConfig = CompleteProcessConfig { completeProcessConfigEnvVars :: [(String, String)]
tmp-postgres.cabal view
@@ -1,5 +1,5 @@ name: tmp-postgres-version: 1.9.0.0+version: 1.9.0.1 synopsis: Start and stop a temporary postgres description: Start and stop a temporary postgres. See README.md homepage: https://github.com/jfischoff/tmp-postgres#readme