consumers 2.2.0.4 → 2.2.0.5
raw patch · 4 files changed
+7/−4 lines, 4 filesdep ~log-basenew-uploaderPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: log-base
API changes (from Hackage documentation)
Files
- CHANGELOG.md +3/−0
- consumers.cabal +2/−2
- example/Example.hs +1/−1
- test/Test.hs +1/−1
CHANGELOG.md view
@@ -1,3 +1,6 @@+# consumers-2.2.0.5 (2021-10-12)+* Adjust to changes in log-base-0.11.+ # consumers-2.2.0.4 (2021-06-09) * Adjust to changes in log-base-0.10.
consumers.cabal view
@@ -1,5 +1,5 @@ name: consumers-version: 2.2.0.4+version: 2.2.0.5 synopsis: Concurrent PostgreSQL data consumers description: Library for setting up concurrent consumers of data@@ -39,7 +39,7 @@ , hpqtypes >= 1.7 && < 2.0 , lifted-base >= 0.2 && < 0.3 , lifted-threads >= 1.0 && < 1.1- , log-base >= 0.7 && < 0.11+ , log-base >= 0.11 && < 0.12 , monad-control >= 1.0 && < 1.1 , monad-time >= 0.3 && < 0.4 , mtl >= 2.2 && < 2.3
example/Example.hs view
@@ -45,7 +45,7 @@ -- Monad stack initialisation. withSimpleStdOutLogger $ \logger ->- runLogT "consumers-example" logger $+ runLogT "consumers-example" logger defaultLogLevel $ runDBT connSource defaultTransactionSettings $ do -- Initialise.
test/Test.hs view
@@ -63,7 +63,7 @@ runTestEnv :: ConnectionSourceM (LogT IO) -> Logger -> TestEnv a -> IO a runTestEnv connSource logger m =- (runLogT "consumers-test" logger)+ (runLogT "consumers-test" logger defaultLogLevel) . (runDBT connSource defaultTransactionSettings) . (\m' -> fst <$> (runStateT m' $ TestEnvSt $ UTCTime (ModifiedJulianDay 0) 0)) . unTestEnv