core-program 0.6.1.0 → 0.6.1.1
raw patch · 3 files changed
+3/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- core-program.cabal +1/−1
- lib/Core/Program/Execute.hs +1/−1
- lib/Core/Program/Threads.hs +1/−1
core-program.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: core-program-version: 0.6.1.0+version: 0.6.1.1 synopsis: Opinionated Haskell Interoperability description: A library to help build command-line programs, both tools and longer-running daemons.
lib/Core/Program/Execute.hs view
@@ -191,7 +191,7 @@ have handled any synchronous checked errors already with a 'catch' and/or have released resources with 'bracket' or 'finally' as shown above. -An info level message will be sent to the log channel indicating that an+A warning level message will be sent to the log channel indicating that an uncaught exception was trapped along with a debug level message showing the exception text, if any.
lib/Core/Program/Threads.hs view
@@ -467,5 +467,5 @@ raceThreads_ one two = void (raceThreads one two) linkThread :: Thread α -> Program τ ()-linkThread = pure $ pure ()+linkThread _ = pure () {-# DEPRECATED linkThread "Exceptions are bidirectional so linkThread no longer needed" #-}