diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2014 Stephen Diehl
+Copyright (c) 2016 Stephen Diehl
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the
diff --git a/repline.cabal b/repline.cabal
--- a/repline.cabal
+++ b/repline.cabal
@@ -1,11 +1,11 @@
 name:                repline
-version:             0.1.4.0
+version:             0.1.5.0
 synopsis:            Haskeline wrapper for GHCi-like REPL interfaces.
 license:             MIT
 license-file:        LICENSE
 author:              Stephen Diehl
 maintainer:          stephen.m.diehl@gmail.com
-copyright:           2014 Stephen Diehl
+copyright:           2014-2016 Stephen Diehl
 category:            User Interfaces
 build-type:          Simple
 extra-source-files:  README.md
@@ -22,19 +22,11 @@
 library
   hs-source-dirs:      src
   exposed-modules:     System.Console.Repline
-  -- other-modules:       
   build-depends:
-    base       >= 4.6 && <4.9,
+    base       >= 4.6 && <4.10,
     containers >= 0.5 && <0.6,
     mtl        >= 2.2 && <2.3,
     haskeline  >= 0.7 && <0.8
-  other-extensions:
-    FlexibleInstances,
-    FlexibleContexts,
-    TypeSynonymInstances,
-    UndecidableInstances,
-    MultiParamTypeClasses,
-    GeneralizedNewtypeDeriving
   default-language:    Haskell2010
 
 executable Simple
diff --git a/src/System/Console/Repline.hs b/src/System/Console/Repline.hs
--- a/src/System/Console/Repline.hs
+++ b/src/System/Console/Repline.hs
@@ -122,6 +122,7 @@
   runMatcher,
   evalRepl,
   abort,
+  tryAction,
 
   trimComplete,
 ) where
