diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,10 +1,16 @@
 # Revision history for hslua-module-text
 
+## 0.1.2  -- 2017-11-17
+
+- Run tests with Travis CI.
+- Fix problems with GHC 7.8
+
+
 ## 0.1.1  -- 2017-11-16
 
-* Lift restriction on base to allow GHC 7.8.
+- Lift restriction on base to allow GHC 7.8.
 
 
 ## 0.1  -- 2017-11-15
 
-* First version. Released on an unsuspecting world.
+- First version. Released on an unsuspecting world.
diff --git a/hslua-module-text.cabal b/hslua-module-text.cabal
--- a/hslua-module-text.cabal
+++ b/hslua-module-text.cabal
@@ -1,5 +1,5 @@
 name:                hslua-module-text
-version:             0.1.1
+version:             0.1.2
 synopsis:            Lua module for text
 description:         UTF-8 aware subset of Lua's `string` module.
 homepage:            https://github.com/hslua/hslua-module-test
@@ -31,7 +31,6 @@
   main-is:             test-hslua-module-text.hs
   hs-source-dirs:      test
   ghc-options:         -Wall -threaded
-  -- other-modules:       Foreign.Lua.Module.TextTest
   build-depends:       base
                      , hslua
                      , hslua-module-text
diff --git a/src/Foreign/Lua/Module/Text.hs b/src/Foreign/Lua/Module/Text.hs
--- a/src/Foreign/Lua/Module/Text.hs
+++ b/src/Foreign/Lua/Module/Text.hs
@@ -35,6 +35,7 @@
   , preloadTextModule
   )where
 
+import Control.Applicative ((<$>))
 import Data.Text (Text)
 import Data.Maybe (fromMaybe)
 import Foreign.Lua (FromLuaStack, NumResults, Lua, LuaInteger, ToLuaStack)
