From 88205f09b2899ac8d30e07e2a90c6af07c44572e Mon Sep 17 00:00:00 2001 From: Jonathan Fischoff Date: Mon, 11 Nov 2019 08:56:53 -0800 Subject: [PATCH] doc fixes. version bump --- CHANGELOG.md | 3 +++ src/Database/Postgres/Temp/Internal/Config.hs | 2 +- src/Database/Postgres/Temp/Internal/Core.hs | 2 +- tmp-postgres.cabal | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 328e882..372be40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,3 +12,6 @@ Changelog for tmp-postgres 1.9.0.0 #41 Configurable temporary directory #59 Change EnvVars to EnvironmentVariables + +1.9.0.1 + Documentation fixes diff --git a/src/Database/Postgres/Temp/Internal/Config.hs b/src/Database/Postgres/Temp/Internal/Config.hs index 772a85f..df13841 100644 --- a/src/Database/Postgres/Temp/Internal/Config.hs +++ b/src/Database/Postgres/Temp/Internal/Config.hs @@ -480,7 +480,7 @@ data Config = Config -- ^ 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 diff --git a/src/Database/Postgres/Temp/Internal/Core.hs b/src/Database/Postgres/Temp/Internal/Core.hs index 8eea2be..02493b9 100644 --- a/src/Database/Postgres/Temp/Internal/Core.hs +++ b/src/Database/Postgres/Temp/Internal/Core.hs @@ -77,7 +77,7 @@ waitForDB logger options = do 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)] diff --git a/tmp-postgres.cabal b/tmp-postgres.cabal index eac465b..9680866 100644 --- a/tmp-postgres.cabal +++ b/tmp-postgres.cabal @@ -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