diff --git a/changes.txt b/changes.txt
--- a/changes.txt
+++ b/changes.txt
@@ -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
 -------
diff --git a/contributors.txt b/contributors.txt
--- a/contributors.txt
+++ b/contributors.txt
@@ -4,6 +4,7 @@
 Francesco Ariis
 Artyom Kazak
 Anton Felix Lorenzen
+Rodney Lorrimar
 Francesco Mazzoli
 Simon Michael
 Luca Molteni
diff --git a/lentil.cabal b/lentil.cabal
--- a/lentil.cabal
+++ b/lentil.cabal
@@ -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
diff --git a/src/Main.hs b/src/Main.hs
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -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"
 
 
diff --git a/stack.yaml b/stack.yaml
--- a/stack.yaml
+++ b/stack.yaml
@@ -1,3 +1,3 @@
-resolver: lts-7.14
+resolver: nightly-2016-12-29
 packages:
 - '.'
diff --git a/test/Lentil/TypeSpec.hs b/test/Lentil/TypeSpec.hs
--- a/test/Lentil/TypeSpec.hs
+++ b/test/Lentil/TypeSpec.hs
@@ -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"
 
