hslua 2.4.0 → 2.5.0
raw patch · 9 files changed
+29/−23 lines, 9 filesdep ~hslua-objectorientationdep ~hslua-packagingdep ~hslua-typingPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: hslua-objectorientation, hslua-packaging, hslua-typing
API changes (from Hackage documentation)
Files
- CHANGELOG.md +13/−1
- LICENSE +1/−1
- app/hslua.hs +1/−1
- hslua.cabal +9/−15
- src/HsLua.hs +1/−1
- src/HsLua/Util.hs +1/−1
- test/HsLua/UtilTests.hs +1/−1
- test/HsLuaTests.hs +1/−1
- test/test-hslua.hs +1/−1
CHANGELOG.md view
@@ -2,7 +2,19 @@ `hslua` uses [PVP Versioning][]. -## Dev+## hslua-2.5.0++Released 2026-01-08.++- Remove deprecated module `HsLua.Packaging.Rendering`.++- Require *hslua-objectorientation* version 2.5.0++- Require *hslua-packaging* version 2.4.0.++- Require *hslua-typing* 0.2.\*.++## hslua-2.4.0 Released 2025-06-23.
LICENSE view
@@ -1,7 +1,7 @@ Copyright © 1994-2023 Lua.org, PUC-Rio. Copyright © 2007-2012 Gracjan Polak Copyright © 2012-2015 Ömer Sinan Ağacan-Copyright © 2016-2024 Albert Krewinkel+Copyright © 2016-2026 Albert Krewinkel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the
app/hslua.hs view
@@ -2,7 +2,7 @@ {-# LANGUAGE TypeApplications #-} {- | Module : Main-Copyright : © 2022-2025 Albert Krewinkel+Copyright : © 2022-2026 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tarleb@hslua.org>
hslua.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: hslua-version: 2.4.0+version: 2.5.0 synopsis: Bindings to Lua, an embeddable scripting language description: HsLua provides wrappers and helpers to bridge Haskell and <https://www.lua.org/ Lua>.@@ -19,21 +19,16 @@ maintainer: tarleb@hslua.org copyright: © 2007–2012 Gracjan Polak; © 2012–2016 Ömer Sinan Ağacan;- © 2017-2024 Albert Krewinkel+ © 2017-2026 Albert Krewinkel category: Foreign build-type: Simple extra-source-files: README.md , CHANGELOG.md , test/lua/*.lua-tested-with: GHC == 8.8.4- , GHC == 8.10.7- , GHC == 9.0.2- , GHC == 9.2.8- , GHC == 9.4.8- , GHC == 9.6.7- , GHC == 9.8.4- , GHC == 9.10.2- , GHC == 9.12.2+tested-with: GHC == 9.6+ , GHC == 9.8+ , GHC == 9.10+ , GHC == 9.12 source-repository head type: git@@ -80,16 +75,15 @@ , HsLua.Packaging , HsLua.Packaging.Function , HsLua.Packaging.Module- , HsLua.Packaging.Rendering , HsLua.Typing hs-source-dirs: src build-depends: hslua-aeson >= 2.3.1 && < 2.4 , hslua-classes >= 2.2.1 && < 2.4 , hslua-core >= 2.3.2 && < 2.4 , hslua-marshalling >= 2.3.1 && < 2.4- , hslua-objectorientation >= 2.4 && < 2.5- , hslua-packaging >= 2.3.1 && < 2.4- , hslua-typing >= 0.1.1 && < 0.2+ , hslua-objectorientation >= 2.5 && < 2.6+ , hslua-packaging >= 2.4 && < 2.5+ , hslua-typing >= 0.2 && < 0.3 test-suite test-hslua import: common-options
src/HsLua.hs view
@@ -2,7 +2,7 @@ Module : HsLua Copyright : © 2007–2012 Gracjan Polak; © 2012–2016 Ömer Sinan Ağacan;- © 2017-2024 Albert Krewinkel+ © 2017-2026 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tarleb@hslua.org> Stability : beta
src/HsLua/Util.hs view
@@ -2,7 +2,7 @@ Module : HsLua.Util Copyright : © 2007–2012 Gracjan Polak; © 2012–2016 Ömer Sinan Ağacan;- © 2017-2024 Albert Krewinkel+ © 2017-2026 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tarleb@hslua.org> Stability : beta
test/HsLua/UtilTests.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE OverloadedStrings #-} {-| Module : HsLua.UtilTests-Copyright : © 2017-2024 Albert Krewinkel+Copyright : © 2017-2026 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tarleb@hslua.org>
test/HsLuaTests.hs view
@@ -3,7 +3,7 @@ {-# LANGUAGE TypeApplications #-} {-| Module : HsLua.Packaging.Module-Copyright : © 2019-2024 Albert Krewinkel+Copyright : © 2019-2026 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tarleb@hslua.org> Stability : alpha
test/test-hslua.hs view
@@ -1,6 +1,6 @@ {-| Module : Main-Copyright : © 2017-2024 Albert Krewinkel+Copyright : © 2017-2026 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tarleb@hslua.org>