hslua-module-text 1.0.1 → 1.0.2
raw patch · 2 files changed
+12/−5 lines, 2 filesdep ~hslua-coredep ~hslua-marshallingdep ~hslua-packagingPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: hslua-core, hslua-marshalling, hslua-packaging
API changes (from Hackage documentation)
Files
- CHANGELOG.md +8/−1
- hslua-module-text.cabal +4/−4
CHANGELOG.md view
@@ -2,9 +2,16 @@ `hslua-module-text` uses [PVP Versioning][]. +## hslua-module-text-1.0.2++Released 2022-02-19.++- Adjusted package bounds, for hslua-core, hslua-marshalling,+ and hslua-packaging.+ ## hslua-module-text-1.0.1 -Released 29-01-2022.+Released 2022-01-29. - Relaxed upper bound of hslua-core, hslua-marshalling, and hslua-packaging, allowing their respective version 2.1.
hslua-module-text.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: hslua-module-text-version: 1.0.1+version: 1.0.2 synopsis: Lua module for text description: UTF-8 aware subset of Lua's `string` module. .@@ -34,8 +34,8 @@ common common-options default-language: Haskell2010 build-depends: base >= 4.8 && < 5- , hslua-core >= 2.0 && < 2.2- , hslua-packaging >= 2.0 && < 2.2+ , hslua-core >= 2.1 && < 2.3+ , hslua-packaging >= 2.1 && < 2.3 , text >= 1.2 && < 2.1 ghc-options: -Wall -Wincomplete-record-updates@@ -54,7 +54,7 @@ import: common-options exposed-modules: HsLua.Module.Text hs-source-dirs: src- build-depends: hslua-marshalling >= 2.0 && < 2.2+ build-depends: hslua-marshalling >= 2.1 && < 2.3 other-extensions: OverloadedStrings test-suite test-hslua-module-text