diff --git a/examples/haskell-src-exts/hse.hs b/examples/haskell-src-exts/hse.hs
--- a/examples/haskell-src-exts/hse.hs
+++ b/examples/haskell-src-exts/hse.hs
@@ -79,8 +79,12 @@
 
 myParse :: Parseable a => String ->  ParseResult a
 myParse = parseWithMode defaultParseMode{
-  extensions = knownExtensions 
+  extensions = ge'
   }
+
+ge' = [ TypeFamilies
+    ]
+
 
 sureParse :: Parseable a => String -> a
 sureParse s = case myParse s of
diff --git a/testing-feat.cabal b/testing-feat.cabal
--- a/testing-feat.cabal
+++ b/testing-feat.cabal
@@ -1,5 +1,5 @@
 Name:                testing-feat
-Version:             0.3
+Version:             0.3.0.1
 Synopsis:            Functional Enumeration of Abstract Types
 Description:         Feat (Functional Enumeration of Abstract Types) provides
                      enumerations as functions from natural numbers to values 
@@ -43,7 +43,7 @@
   
   Build-depends: 
     base >= 4.5 && <= 5,
-    template-haskell >= 2.5 && < 2.8,
+    template-haskell >= 2.5 && < 2.9,
     mtl >= 1 && < 3,
     QuickCheck > 2 && < 3,
     tagshare<0.1
