diff --git a/changes.txt b/changes.txt
--- a/changes.txt
+++ b/changes.txt
@@ -1,3 +1,9 @@
+0.1.4.1
+-------
+
+- Released Wed 26 Aug 2015 22:11:33 CEST
+- Added ".cabal" ".chs" ".hsc" (request by Henning Thielemann)
+
 0.1.4.0
 -------
 
diff --git a/contributors.txt b/contributors.txt
--- a/contributors.txt
+++ b/contributors.txt
@@ -1,7 +1,7 @@
 Francesco Ariis
-Henning Thielemann
 Larsen
+Simon Michael
 Qptain Nemo
 Peter Simons
-Simon Michael
+Henning Thielemann
 Tomislav
diff --git a/doc/usr/page.rst b/doc/usr/page.rst
--- a/doc/usr/page.rst
+++ b/doc/usr/page.rst
@@ -135,7 +135,7 @@
 
 As now lentil parses:
 
-- haskell source files (``.hs``, ``.lhs``)
+- haskell source files (``.hs``, ``.lhs``, ``.chs``, ``.hsc``, ``.cabal``)
 - C source files (``.c``, ``.h``), C++ (``.cpp``, ``.hpp``), Java (``.java``)
 - javascript source files (``.js``)
 - pascal source files (``.pas``, ``.pp``, ``.inc``)
diff --git a/lentil.cabal b/lentil.cabal
--- a/lentil.cabal
+++ b/lentil.cabal
@@ -1,5 +1,5 @@
 name:                lentil
-version:             0.1.4.0
+version:             0.1.4.1
 synopsis:            frugal issue tracker
 description:         minumum effort, cohesive issue tracker based on
                      ubiquitous @TODO@s and @FIXME@s conventions.
diff --git a/src/Lentil/Parse/Syntaxes.hs b/src/Lentil/Parse/Syntaxes.hs
--- a/src/Lentil/Parse/Syntaxes.hs
+++ b/src/Lentil/Parse/Syntaxes.hs
@@ -22,7 +22,9 @@
 --       a compilazione [u:2] [feature:intermediate]
 
 langParser :: String -> Maybe (ParSource [CommentString])
-langParser fp | ext `elem` [".hs", ".lhs"]         = Just haskell
+langParser fp | ext `elem` [".hs", ".lhs",
+                            ".hsc", ".chs" ]       = Just haskell
+              | ext `elem` [".cabal"]              = Just haskell -- cabal
               | ext `elem` [".c", ".h"]            = Just c
               | ext `elem` [".cpp", ".hpp"]        = Just c -- C++
               | ext `elem` [".java"]               = Just c -- Java
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 = "lentil - frugal issue tracker, version 0.1.4.0\n\
+          versionCopy = "lentil - frugal issue tracker, version 0.1.4.1\n\
                         \(C) 2015 Francesco Ariis - http://www.ariis.it\n\
                         \released under the GNU General Public License v3\n"
 
