diff --git a/changes.txt b/changes.txt
--- a/changes.txt
+++ b/changes.txt
@@ -1,3 +1,9 @@
+0.2.0.1
+-------
+
+- Released Wed 31 Aug 2016 19:21:44 CEST
+- Relaxed base bounds
+
 0.2.0.0
 -------
 
diff --git a/issues.txt b/issues.txt
--- a/issues.txt
+++ b/issues.txt
@@ -37,12 +37,12 @@
     41 
    https://blog.steve.org.uk/If_line_noise_is_a_program__all_fuzzers_are_developers.html
    in lentil? [debug] [u:2]
-    42  parsing with http://awgn.github.io/cgrep/ [test]
+    42  parsing with http://awgn.github.io/cgrep/ [design]
  
 src/Lentil/Args.hs
-    25  disambiguation optparse-applicative [feature:intermediate]
-    26  help as lentil PATH [ PATH... ] [ OPTIONS ] [feature:intermediate]
-   102  uncomment and implement sorting [feature:intermediate]
+    26  disambiguation optparse-applicative [feature:intermediate]
+    27  help as lentil PATH [ PATH... ] [ OPTIONS ] [feature:intermediate]
+   103  uncomment and implement sorting [feature:intermediate]
  
 src/Lentil/Export.hs
     36  maybe use a dedicated library to format xml? [design]
@@ -73,14 +73,3 @@
 src/Main.hs
     41  leave sort out as now? [design]
     58  o ord? [fixme]
- 
-test/Lentil/ArgsSpec.hs
-    37  real parsing testing options [test]
- 
-test/Lentil/FileSpec.hs
-    38  excluding files fails on MS Windows! Check why! [u:3] [bug]
- 
-test/Tests.hs
-     4 
-   http://hackage.haskell.org/package/mockery-0.3.0/docs/Test-Mockery-Directory.html
-   instead of folder use this? [refactor]
diff --git a/lentil.cabal b/lentil.cabal
--- a/lentil.cabal
+++ b/lentil.cabal
@@ -1,5 +1,5 @@
 name:                lentil
-version:             0.2.0.0
+version:             0.2.0.1
 synopsis:            frugal issue tracker
 description:         minumum effort, cohesive issue tracker based on
                      ubiquitous @TODO@s and @FIXME@s conventions.
@@ -45,7 +45,7 @@
 
 executable lentil
   main-is:             Main.hs
-  build-depends:       base==4.9.*, optparse-applicative==0.13.*,
+  build-depends:       base==4.*, optparse-applicative==0.13.*,
                        regex-tdfa==1.2.*, natural-sort==0.1.*, parsec==3.1.*,
                        filepath==1.4.*, directory==1.2.*, filemanip==0.3.*,
                        ansi-wl-pprint==0.6.*, csv==0.1.*
@@ -61,7 +61,7 @@
   ghc-options:         -Wall
   HS-Source-Dirs:      test, src
   main-is:             Tests.hs
-  build-depends:       base==4.9.*, optparse-applicative==0.13.*,
+  build-depends:       base==4.*, optparse-applicative==0.13.*,
                        regex-tdfa==1.2.*, natural-sort==0.1.*, parsec==3.1.*,
                        filepath==1.4.*, directory==1.2.*, filemanip==0.3.*,
                        ansi-wl-pprint==0.6.*, csv==0.1.*
diff --git a/src/Main.hs b/src/Main.hs
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -28,7 +28,7 @@
                                    short 'v'      <>
                                    help "show version and copyright info" )
     where
-          versionCopy = "\nlentil - frugal issue tracker, version 0.2.0.0\n\
+          versionCopy = "\nlentil - frugal issue tracker, version 0.2.0.1\n\
                         \(C) 2015-2016 Francesco Ariis - http://www.ariis.it\n\
                         \released under the GNU General Public License v3\n"
 
