packages feed

hslua-marshalling 2.3.0 → 2.3.1

raw patch · 14 files changed

+28/−19 lines, 14 filesdep ~bytestringdep ~containersdep ~textPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: bytestring, containers, text

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -2,6 +2,13 @@  `hslua-marshalling` uses [PVP Versioning][]. +## hslua-marshalling-2.3.1++Released 2024-01-18.++-   Relaxed upper bound for text, containers, and bytestring,+    allowing text-2.1, containers-0.7, and bytestring-0.12.+ ## hslua-marshalling-2.3.0  Released 2023-03-13.
LICENSE view
@@ -1,7 +1,7 @@ Copyright © 1994-2022 Lua.org, PUC-Rio. Copyright © 2007-2012 Gracjan Polak Copyright © 2012-2015 Ömer Sinan Ağacan-Copyright © 2016-2023 Albert Krewinkel+Copyright © 2016-2024 Albert Krewinkel  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the
hslua-marshalling.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.2 name:                hslua-marshalling-version:             2.3.0+version:             2.3.1 synopsis:            Marshalling of values between Haskell and Lua. description:         Provides functions to marshal values from Haskell                      to Lua, and /vice versa/.@@ -16,7 +16,7 @@ maintainer:          tarleb@hslua.org copyright:           © 2007–2012 Gracjan Polak;                      © 2012–2016 Ömer Sinan Ağacan;-                     © 2017-2023 Albert Krewinkel+                     © 2017-2024 Albert Krewinkel category:            Foreign extra-source-files:  README.md                    , CHANGELOG.md@@ -25,8 +25,10 @@                    , GHC == 8.8.4                    , GHC == 8.10.7                    , GHC == 9.0.2-                   , GHC == 9.2.5-                   , GHC == 9.4.4+                   , GHC == 9.2.8+                   , GHC == 9.4.8+                   , GHC == 9.6.3+                   , GHC == 9.8.1  source-repository head   type:                git@@ -36,11 +38,11 @@ common common-options   default-language:    Haskell2010   build-depends:       base              >= 4.11   && < 5-                     , bytestring        >= 0.10.2 && < 0.12-                     , containers        >= 0.5.9  && < 0.7+                     , bytestring        >= 0.10.2 && < 0.13+                     , containers        >= 0.5.9  && < 0.8                      , hslua-core        >= 2.2.1  && < 2.4                      , mtl               >= 2.2    && < 2.4-                     , text              >= 1.2    && < 2.1+                     , text              >= 1.2    && < 2.2   ghc-options:         -Wall                        -Wincomplete-record-updates                        -Wnoncanonical-monad-instances
src/HsLua/Marshalling.hs view
@@ -2,7 +2,7 @@ Module      : HsLua.Marshalling Copyright   : © 2007–2012 Gracjan Polak;               © 2012–2016 Ömer Sinan Ağacan;-              © 2017-2023 Albert Krewinkel+              © 2017-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org> 
src/HsLua/Marshalling/Peek.hs view
@@ -4,7 +4,7 @@ {-# LANGUAGE ScopedTypeVariables #-} {-| Module      : HsLua.Marshalling.Peek-Copyright   : © 2020-2023 Albert Krewinkel+Copyright   : © 2020-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org> Stability   : beta
src/HsLua/Marshalling/Peekers.hs view
@@ -3,7 +3,7 @@ {-# LANGUAGE ScopedTypeVariables #-} {-| Module      : HsLua.Marshalling.Peekers-Copyright   : © 2020-2023 Albert Krewinkel+Copyright   : © 2020-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org> Stability   : beta
src/HsLua/Marshalling/Push.hs view
@@ -1,6 +1,6 @@ {-| Module      : HsLua.Marshalling.Push-Copyright   : © 2020-2023 Albert Krewinkel+Copyright   : © 2020-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org> Stability   : beta
src/HsLua/Marshalling/Userdata.hs view
@@ -5,7 +5,7 @@ Module      : HsLua.Marshalling.Userdata Copyright   : © 2007–2012 Gracjan Polak;               © 2012–2016 Ömer Sinan Ağacan;-              © 2017-2023 Albert Krewinkel+              © 2017-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org> Stability   : beta
test/HsLua/Marshalling/PeekTests.hs view
@@ -2,7 +2,7 @@ {-# LANGUAGE TypeApplications #-} {-| Module      : HsLua.Marshalling.PeekTests-Copyright   : © 2020-2023 Albert Krewinkel+Copyright   : © 2020-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org> Stability   : alpha
test/HsLua/Marshalling/PeekersTests.hs view
@@ -2,7 +2,7 @@ {-# LANGUAGE TypeApplications #-} {-| Module      : HsLua.Marshalling.PeekersTests-Copyright   : © 2020-2023 Albert Krewinkel+Copyright   : © 2020-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org> 
test/HsLua/Marshalling/PushTests.hs view
@@ -3,7 +3,7 @@ {-# LANGUAGE TypeApplications #-} {-| Module      : HsLua.Marshalling.PushTests-Copyright   : © 2020-2023 Albert Krewinkel+Copyright   : © 2020-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org> Stability   : alpha
test/HsLua/Marshalling/UserdataTests.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE OverloadedStrings #-} {-| Module      : HsLua.Marshalling.UserdataTests-Copyright   : © 2018-2023 Albert Krewinkel+Copyright   : © 2018-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org> 
test/HsLua/MarshallingTests.hs view
@@ -2,7 +2,7 @@ {-# LANGUAGE OverloadedStrings #-} {-| Module      : HsLua.MarshallingTests-Copyright   : © 2020-2023 Albert Krewinkel+Copyright   : © 2020-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org> Stability   : alpha
test/test-hslua-marshalling.hs view
@@ -1,6 +1,6 @@ {-| Module      : Main-Copyright   : © 2017-2023 Albert Krewinkel+Copyright   : © 2017-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org>