haskeline-repl 0.2.0.0 → 0.3.0.0
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- haskeline-repl.cabal +1/−1
- src/System/Console/Repl.hs +2/−2
haskeline-repl.cabal view
@@ -1,5 +1,5 @@ name: haskeline-repl-version: 0.2.0.0+version: 0.3.0.0 -- synopsis: description: A convenient Haskeline wrapper homepage: https://github.com/githubuser/haskeline-repl#readme
src/System/Console/Repl.hs view
@@ -14,11 +14,11 @@ loop = do line <- getInputLine prompt case line of+ Just ":q" ->+ return () Just input -> do liftIO $ f input loop- Just ":q" ->- return () Nothing -> return ()