packages feed

helic 0.5.0.0 → 0.5.1.0

raw patch · 3 files changed

+8/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

changelog.md view
@@ -1,5 +1,9 @@ # Unreleased +# 0.5.1.0++* Broadcast the matching event when executing `load`.+ # 0.5.0.0  * Allow empty config files.
helic.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           helic-version:        0.5.0.0+version:        0.5.1.0 synopsis:       Clipboard Manager description:    See <https://hackage.haskell.org/package/helic/docs/Helic.html> category:       Clipboard
lib/Helic/Interpreter/History.hs view
@@ -172,5 +172,6 @@     History.Receive event ->       unlessM (isNetworkCycle event) do         receiveEvent maxHistory event-    History.Load index ->-      loadEvent index+    History.Load index -> do+      e <- loadEvent index+      e <$ traverse_ broadcast e