hslua-module-text 0.1.1 → 0.1.2
raw patch · 3 files changed
+10/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +8/−2
- hslua-module-text.cabal +1/−2
- src/Foreign/Lua/Module/Text.hs +1/−0
ChangeLog.md view
@@ -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.
hslua-module-text.cabal view
@@ -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
src/Foreign/Lua/Module/Text.hs view
@@ -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)