propellor 4.7.2 → 4.7.3
raw patch · 4 files changed
+15/−3 lines, 4 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Propellor.Message: ActionEnd :: Result -> Trace
+ Propellor.Message: ActionEnd :: (Maybe HostName) -> Desc -> Result -> Trace
Files
- CHANGELOG +6/−0
- debian/changelog +6/−0
- propellor.cabal +1/−1
- src/Propellor/Message.hs +2/−2
CHANGELOG view
@@ -1,3 +1,9 @@+propellor (4.7.3) unstable; urgency=medium++ * Expand the Trace data type.++ -- Joey Hess <id@joeyh.name> Sat, 29 Jul 2017 17:26:32 -0400+ propellor (4.7.2) unstable; urgency=medium * Added PROPELLOR_TRACE environment variable, which can be set to 1 to
debian/changelog view
@@ -1,3 +1,9 @@+propellor (4.7.3) unstable; urgency=medium++ * Expand the Trace data type.++ -- Joey Hess <id@joeyh.name> Sat, 29 Jul 2017 17:26:32 -0400+ propellor (4.7.2) unstable; urgency=medium * Added PROPELLOR_TRACE environment variable, which can be set to 1 to
propellor.cabal view
@@ -1,5 +1,5 @@ Name: propellor-Version: 4.7.2+Version: 4.7.3 Cabal-Version: >= 1.20 License: BSD2 Maintainer: Joey Hess <id@joeyh.name>
src/Propellor/Message.hs view
@@ -42,7 +42,7 @@ -- make propellor emit these to stdout, in addition to its other output. data Trace = ActionStart (Maybe HostName) Desc- | ActionEnd Result+ | ActionEnd (Maybe HostName) Desc Result deriving (Read, Show) -- | Given a line read from propellor, if it's a serialized Trace,@@ -101,7 +101,7 @@ liftIO $ trace $ ActionStart mhn desc r <- a- liftIO $ trace $ ActionEnd $ toResult r+ liftIO $ trace $ ActionEnd mhn desc (toResult r) liftIO $ outputConcurrent . concat =<< sequence [ whenConsole $