packages feed

lentil 1.0.4.0 → 1.0.5.0

raw patch · 6 files changed

+37/−19 lines, 6 filesdep ~directorydep ~hspecdep ~pipes

Dependency ranges changed: directory, hspec, pipes

Files

changes.txt view
@@ -1,3 +1,10 @@+1.0.5.0+-------++- Released Tue 27 Dec 2016 14:22:12 CET+- Modified boundaries for inclusion of lentil into Stackage,+  (request and help provided by Luke Murphy)+ 1.0.4.0 ------- 
contributors.txt view
@@ -7,6 +7,7 @@ Francesco Mazzoli Simon Michael Luca Molteni+Luke Murphy Qptain Nemo Mats Rauhala Stefano Rodighiero
doc/usr/page.rst view
@@ -55,6 +55,15 @@    export PATH=$PATH:~/.cabal/bin +If you prefer, you can use Stack:++::++  stack install lentil++Stackage mainteinership is kindly provided by `Luke Murphy`_, whom I thank!++.. _`Luke Murphy`: test.zip  .. raw:: html 
lentil.cabal view
@@ -1,5 +1,5 @@ name:                lentil-version:             1.0.4.0+version:             1.0.5.0 synopsis:            frugal issue tracker description:         minumum effort, cohesive issue tracker based on                      ubiquitous @TODO@s and @FIXME@s conventions.@@ -50,12 +50,14 @@  executable lentil   main-is:             Main.hs-  build-depends:       base==4.*, optparse-applicative==0.13.*,-                       regex-tdfa==1.2.*, natural-sort==0.1.*, parsec==3.1.*,-                       filepath==1.4.*, directory==1.3.*, filemanip==0.3.*,-                       ansi-wl-pprint==0.6.*, csv==0.1.*, pipes==4.3.*,-                       terminal-progress-bar==0.1.*, text==1.2.*,-                       semigroups==0.18.*, transformers >= 0.3 && < 0.6+  build-depends:       base==4.*,+                       directory >= 1.2 && < 1.4,+                       transformers >= 0.3 && < 0.6,+                       optparse-applicative==0.13.*, regex-tdfa==1.2.*,+                       natural-sort==0.1.*, parsec==3.1.*, filepath==1.4.*,+                       filemanip==0.3.*, ansi-wl-pprint==0.6.*, csv==0.1.*,+                       pipes==4.2.*, terminal-progress-bar==0.1.*,+                       text==1.2.*, semigroups==0.18.*   other-modules:       Lentil.Types, Lentil.Args, Lentil.File, Lentil.Print,                        Lentil.Query, Lentil.Export, Lentil.Parse.Source,                        Lentil.Parse.Issue Lentil.Parse.Syntaxes,@@ -68,14 +70,16 @@   ghc-options:         -Wall   HS-Source-Dirs:      test, src   main-is:             Tests.hs-  build-depends:       base==4.*, optparse-applicative==0.13.*,-                       regex-tdfa==1.2.*, natural-sort==0.1.*, parsec==3.1.*,-                       filepath==1.4.*, directory==1.3.*, filemanip==0.3.*,-                       ansi-wl-pprint==0.6.*, csv==0.1.*, pipes==4.3.*,-                       terminal-progress-bar==0.1.*, text==1.2.*,-                       semigroups==0.18.*, transformers >= 0.3 && < 0.6+  build-depends:       base==4.*,+                       directory >= 1.2 && < 1.4,+                       transformers >= 0.3 && < 0.6,+                       optparse-applicative==0.13.*, regex-tdfa==1.2.*,+                       natural-sort==0.1.*, parsec==3.1.*, filepath==1.4.*,+                       filemanip==0.3.*, ansi-wl-pprint==0.6.*, csv==0.1.*,+                       pipes==4.2.*, terminal-progress-bar==0.1.*,+                       text==1.2.*, semigroups==0.18.*                        -- same as above, plus hspec-                       , hspec==2.3.*+                       , hspec==2.2.*   other-modules:       Lentil.Types, Lentil.Args, Lentil.File, Lentil.Print,                        Lentil.Query, Lentil.Export, Lentil.Parse.Source,                        Lentil.Parse.Issue, Lentil.Parse.Syntaxes,
src/Main.hs view
@@ -28,7 +28,7 @@                                    short 'v'      <>                                    help "show version and copyright info" )     where-          versionCopy = "\nlentil - frugal issue tracker, version 1.0.4.0\n\+          versionCopy = "\nlentil - frugal issue tracker, version 1.0.5.0\n\                         \(C) 2015-2016 Francesco Ariis - http://www.ariis.it\n\                         \released under the GNU General Public License v3\n" 
stack.yaml view
@@ -1,6 +1,3 @@-resolver: lts-6.14+resolver: lts-7.14 packages: - '.'-extra-deps:-  - optparse-applicative-0.13.0.0-  - pipes-4.2.0