lentil 1.0.6.1 → 1.0.7.0
raw patch · 6 files changed
+24/−12 lines, 6 files
Files
- changes.txt +12/−1
- contributors.txt +1/−0
- lentil.cabal +4/−3
- src/Main.hs +2/−2
- stack.yaml +1/−1
- test/Lentil/TypeSpec.hs +4/−5
changes.txt view
@@ -1,8 +1,19 @@+1.0.7.0+-------++- Released Thu 29 Dec 2016 23:14:10 CET+- Accepted 3 patched from Luke Murphy:+ - fixing stack.yaml+ - fixing a missing other-modules in lentil.cabal+ - fixing a broken test+- Bumped year for some tagged issues+ 1.0.6.1 ------- - Released Wed 28 Dec 2016 22:17:49 CET-- Fixed mispelled testfile name+- Fixed mispelled testfile name (reported by Stack curators and+ Rodney Lorrimar). 1.0.6.0 -------
contributors.txt view
@@ -4,6 +4,7 @@ Francesco Ariis Artyom Kazak Anton Felix Lorenzen+Rodney Lorrimar Francesco Mazzoli Simon Michael Luca Molteni
lentil.cabal view
@@ -1,5 +1,5 @@ name: lentil-version: 1.0.6.1+version: 1.0.7.0 synopsis: frugal issue tracker description: minumum effort, cohesive issue tracker based on ubiquitous @TODO@s and @FIXME@s conventions.@@ -9,7 +9,7 @@ license-file: LICENSE author: Francesco Ariis <fa-ml@ariis.it> maintainer: Francesco Ariis <fa-ml@ariis.it>-copyright: © 2015-2016 Francesco Ariis+copyright: © 2015-2017 Francesco Ariis category: Development build-type: Simple tested-with: GHC==7.8.4, GHC==8.0.1@@ -89,7 +89,8 @@ Lentil.ArgsSpec, Lentil.ExportSpec, Lentil.FileSpec, Lentil.PrintSpec, Lentil.Parse.SourceSpec, Lentil.Parse.IssueSpec, Lentil.QuerySpec,- Lentil.TypeSpec, Lentil.Parse.RunSpec+ Lentil.TypeSpec, Lentil.Parse.RunSpec,+ Lentil.Helpers type: exitcode-stdio-1.0 source-repository head
src/Main.hs view
@@ -28,8 +28,8 @@ short 'v' <> help "show version and copyright info" ) where- versionCopy = "\nlentil - frugal issue tracker, version 1.0.6.1\n\- \(C) 2015-2016 Francesco Ariis - http://www.ariis.it\n\+ versionCopy = "\nlentil - frugal issue tracker, version 1.0.7.0\n\+ \(C) 2015-2017 Francesco Ariis - http://www.ariis.it\n\ \released under the GNU General Public License v3\n"
stack.yaml view
@@ -1,3 +1,3 @@-resolver: lts-7.14+resolver: nightly-2016-12-29 packages: - '.'
test/Lentil/TypeSpec.hs view
@@ -1,8 +1,8 @@ module Lentil.TypeSpec where -import Test.Hspec+import Test.Hspec -import Lentil.Types+import Lentil.Types -- File tests @@ -11,10 +11,9 @@ spec :: Spec spec = do- describe "prettyFP" $ do it "eliminates ./ from beginning of fp, if present" $ prettyFP "./file" `shouldBe` "file"- it "doesn't change fp is ./ is not there at begin-of-fp" $- prettyFP "./file" `shouldBe` "file"+ it "doesn't change fp if ./ is not there at begin-of-fp" $+ prettyFP "file" `shouldBe` "file"