packages feed

butcher 1.3.2.0 → 1.3.2.1

raw patch · 3 files changed

+8/−9 lines, 3 filesdep ~basedep ~dequePVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: base, deque

API changes (from Hackage documentation)

- UI.Butcher.Monadic: cmd_out :: forall out_aiBH. Lens' (CommandDesc out_aiBH) (Maybe out_aiBH)
+ UI.Butcher.Monadic: cmd_out :: forall out_aiBX. Lens' (CommandDesc out_aiBX) (Maybe out_aiBX)
- UI.Butcher.Monadic.Types: cmd_out :: forall out_aiBH. Lens' (CommandDesc out_aiBH) (Maybe out_aiBH)
+ UI.Butcher.Monadic.Types: cmd_out :: forall out_aiBX. Lens' (CommandDesc out_aiBX) (Maybe out_aiBX)

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for butcher +## 1.3.2.1  -- October 2018++* Adapt/Use latest version of `deque` to fix ghc-8.6 problems+ ## 1.3.2.0  -- October 2018  * Fix for simpleCompletion
butcher.cabal view
@@ -1,5 +1,5 @@ name:                butcher-version:             1.3.2.0+version:             1.3.2.1 synopsis:            Chops a command or program invocation into digestable pieces. description:         See the <https://github.com/lspitzner/butcher/blob/master/README.md README> (it is properly formatted on github). license:             BSD3@@ -37,7 +37,7 @@   other-modules:       UI.Butcher.Monadic.Internal.Types                        UI.Butcher.Monadic.Internal.Core   build-depends:-    { base >=4.9 && <4.12+    { base >=4.9 && <4.13     , free < 5.2     , unsafe < 0.1     , microlens <0.5@@ -50,7 +50,7 @@     , extra <1.7     , void <0.8     , bifunctors <5.6-    , deque <0.3+    , deque >=0.2.4 && <0.3     }   hs-source-dirs:      src   default-language:    Haskell2010@@ -80,6 +80,7 @@   }   ghc-options: {     -Wall+    -Wcompat     -fno-spec-constr     -fno-warn-unused-imports     -fno-warn-orphans
src/UI/Butcher/Monadic/Internal/Types.hs view
@@ -226,9 +226,3 @@ --   show (CmdParserParam s _ _) = "(CmdParserParam " ++ s ++ ")" --   show (CmdParserChild s _ _) = "(CmdParserChild " ++ s ++ ")" --   show (CmdParserRun _) = "CmdParserRun"--instance Alternative Deque where-  empty = mempty-  (<|>) = Deque.prepend--instance MonadPlus Deque