diff --git a/CHANGELOG.md b/CHANGELOG.md index 1977db7..63db40a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.1.0.6] - 2018-09-20 +### Fixed +- Bugfix with imports + ## [0.1.0.5] - 2018-09-20 ### Added - Field `databases` in Postgres config. diff --git a/bcd-config.cabal b/bcd-config.cabal index 43abdb2..28f44e3 100644 --- a/bcd-config.cabal +++ b/bcd-config.cabal @@ -1,5 +1,5 @@ name: bcd-config -version: 0.1.0.5 +version: 0.1.0.6 synopsis: Library to get config. description: Library to get config to different systems homepage: https://github.com/biocad/bcd-config#readme diff --git a/src/System/BCD/Config/Postgres.hs b/src/System/BCD/Config/Postgres.hs index a884706..98da124 100644 --- a/src/System/BCD/Config/Postgres.hs +++ b/src/System/BCD/Config/Postgres.hs @@ -6,6 +6,8 @@ module System.BCD.Config.Postgres ) where import Data.Aeson.Picker ((|--)) +import Data.Map.Strict (Map) +import Data.Text (Text) import System.BCD.Config (FromJsonConfig (..), getConfigText) data PostgresConfig = PostgresConfig { _host :: String