packages feed

console-program 0.4.2.2 → 0.4.2.3

raw patch · 2 files changed

+8/−4 lines, 2 filesdep ~ansi-terminaldep ~containersPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: ansi-terminal, containers

API changes (from Hackage documentation)

- System.Console.Command: data Tree a :: * -> *
+ System.Console.Command: data Tree a
- System.Console.Command: io :: (MonadIO m) => m () -> Action m
+ System.Console.Command: io :: MonadIO m => m () -> Action m
- System.Console.Command: withNonOption :: (MonadIO m) => Type x -> (x -> Action m) -> Action m
+ System.Console.Command: withNonOption :: MonadIO m => Type x -> (x -> Action m) -> Action m
- System.Console.Command: withNonOptions :: (MonadIO m) => Type x -> ([x] -> Action m) -> Action m
+ System.Console.Command: withNonOptions :: MonadIO m => Type x -> ([x] -> Action m) -> Action m
- System.Console.Command: withOption :: (MonadIO m) => Option a -> (a -> Action m) -> Action m
+ System.Console.Command: withOption :: MonadIO m => Option a -> (a -> Action m) -> Action m
- System.Console.Program: showUsage :: (MonadIO m) => Commands n -> m ()
+ System.Console.Program: showUsage :: MonadIO m => Commands n -> m ()

Files

CHANGELOG.md view
@@ -1,5 +1,10 @@ # Changelog +### 0.4.2.3++* Update dependencies on containers and ansi-terminal.+* Fix cabal warning on category field.+ ### 0.4.2.2  * Update dependency on directory package.
console-program.cabal view
@@ -1,10 +1,9 @@ name:            console-program-version:         0.4.2.2+version:         0.4.2.3 cabal-Version:   >= 1.6 license:         BSD3 author:          Arie Peterson maintainer:      ariep@xs4all.nl-category:        Console synopsis:        Interpret the command line and a config file as commands and options description:   This library provides a framework to build command line programs.@@ -43,10 +42,10 @@ library   build-depends:     base == 4.*,-    containers >= 0.1 && < 0.6,+    containers >= 0.1 && < 0.7,     directory >= 1.0 && < 1.4,     ansi-wl-pprint >= 0.5 && < 0.7,-    ansi-terminal >= 0.5 && < 0.7,+    ansi-terminal >= 0.5 && < 0.10,     haskeline == 0.7.*,     transformers >= 0.2 && < 0.6,     utility-ht == 0.0.*,