packages feed

hslua-module-text 1.0.3.1 → 1.1.0

raw patch · 5 files changed

+18/−10 lines, 5 filesdep ~basedep ~hslua-coredep ~hslua-marshallingPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, hslua-core, hslua-marshalling, hslua-packaging

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -2,6 +2,13 @@  `hslua-module-text` uses [PVP Versioning][]. +## hslua-module-text-1.1.0++Released 2023-03-13.++-   Update to hslua-2.3; this includes the addition of type+    initializers to the module and type specifiers to the fields.+ ## hslua-module-text-1.0.3.1  Released 2023-01-06.
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2017-2022 Albert Krewinkel+Copyright (c) 2017-2023 Albert Krewinkel  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the
hslua-module-text.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.2 name:                hslua-module-text-version:             1.0.3.1+version:             1.1.0 synopsis:            Lua module for text description:         UTF-8 aware subset of Lua's `string` module.                      .@@ -12,7 +12,7 @@ license:             MIT license-file:        LICENSE author:              Albert Krewinkel-maintainer:          albert+hslua@zeitkraut.de+maintainer:          tarleb@hslua.org copyright:           © 2017–2023 Albert Krewinkel category:            Foreign extra-source-files:  CHANGELOG.md@@ -32,9 +32,9 @@  common common-options   default-language:    Haskell2010-  build-depends:       base                 >= 4.8    && < 5-                     , hslua-core           >= 2.1    && < 2.4-                     , hslua-packaging      >= 2.1    && < 2.3+  build-depends:       base                 >= 4.11   && < 5+                     , hslua-core           >= 2.3    && < 2.4+                     , hslua-packaging      >= 2.3    && < 2.4                      , text                 >= 1.2    && < 2.1   ghc-options:         -Wall                        -Wincomplete-record-updates@@ -53,7 +53,7 @@   import:              common-options   exposed-modules:     HsLua.Module.Text   hs-source-dirs:      src-  build-depends:       hslua-marshalling    >= 2.1    && < 2.3+  build-depends:       hslua-marshalling    >= 2.1    && < 2.4   other-extensions:    OverloadedStrings  test-suite test-hslua-module-text
src/HsLua/Module/Text.hs view
@@ -5,7 +5,7 @@ Module      : HsLua.Module.Text Copyright   : © 2017–2023 Albert Krewinkel License     : MIT-Maintainer  : Albert Krewinkel <tarleb+hslua@zeitkraut.de>+Maintainer  : Albert Krewinkel <tarleb@hslua.org> Stability   : alpha Portability : GHC only @@ -56,6 +56,7 @@     ]   , moduleDescription =       "UTF-8 aware text manipulation functions, implemented in Haskell."+  , moduleTypeInitializers = []   }  --
test/test-hslua-module-text.hs view
@@ -2,9 +2,9 @@ {-# LANGUAGE TypeApplications  #-} {-| Module      : Main-Copyright   : © 2017-2022 Albert Krewinkel+Copyright   : © 2017-2023 Albert Krewinkel License     : MIT-Maintainer  : Albert Krewinkel <albert+hslua@zeitkraut.de>+Maintainer  : Albert Krewinkel <tarleb@hslua.org> Stability   : stable Portability : Requires language extensions ForeignFunctionInterface,               OverloadedStrings.