lpeg 1.0.3 → 1.0.4
raw patch · 6 files changed
+25/−17 lines, 6 filesdep ~basedep ~lua
Dependency ranges changed: base, lua
Files
- CHANGELOG.md +9/−0
- LICENSE +1/−1
- lpeg.cabal +9/−10
- src/Lua/LPeg.hs +2/−2
- substitute/Lua/LPeg.hs +2/−2
- test/test-lpeg.hs +2/−2
CHANGELOG.md view
@@ -2,6 +2,15 @@ `lpeg` uses [PVP Versioning][]. +## lpeg-1.0.4++Released 2023-03-13.++- Allow lua-2.3.++- Cease support for GHC 8.2 and older; require base 4.11 or+ later.+ ## lpeg-1.0.3 Released 2022-01-29.
LICENSE view
@@ -1,5 +1,5 @@ Copyright © 2007-2019 Lua.org, PUC-Rio.-Copyright © 2021-2022 Albert Krewinkel+Copyright © 2021-2023 Albert Krewinkel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the
lpeg.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: lpeg-version: 1.0.3+version: 1.0.4 synopsis: LPeg – Parsing Expression Grammars For Lua description: This package contains the C sources of LPeg, as well as some tiny Haskell helper to load the package.@@ -11,23 +11,22 @@ license: MIT license-file: LICENSE author: Albert Krewinkel-maintainer: Albert Krewinkel <albert+hslua@zeitkraut.de>+maintainer: Albert Krewinkel <tarleb@hslua.org> copyright: © 2007-2019 Lua.org, PUC-Rio;- © 2021-2022 Albert Krewinkel+ © 2021-2023 Albert Krewinkel category: Foreign build-type: Simple extra-source-files: cbits/lpeg-1.0.2/*.h , cbits/re.h , README.md , CHANGELOG.md-tested-with: GHC == 8.0.2- , GHC == 8.2.2- , GHC == 8.4.4+tested-with: GHC == 8.4.4 , GHC == 8.6.5 , GHC == 8.8.4 , GHC == 8.10.7- , GHC == 9.0.1- , GHC == 9.2.1+ , GHC == 9.0.2+ , GHC == 9.2.5+ , GHC == 9.4.4 source-repository head type: git@@ -44,8 +43,8 @@ common common-options default-language: Haskell2010- build-depends: base >= 4.8 && < 5- , lua >= 2.1 && < 2.3+ build-depends: base >= 4.11 && < 5+ , lua >= 2.1 && < 2.4 ghc-options: -Wall -Wincomplete-record-updates -Wnoncanonical-monad-instances
src/Lua/LPeg.hs view
@@ -1,8 +1,8 @@ {-| Module : Lua.LPeg-Copyright : © 2021-2022 Albert Krewinkel+Copyright : © 2021-2023 Albert Krewinkel License : MIT-Maintainer : Albert Krewinkel <tarleb+hslua@zeitkraut.de>+Maintainer : Albert Krewinkel <tarleb@hslua.org> Haskell bindings to the LPeg Lua package. -}
substitute/Lua/LPeg.hs view
@@ -1,8 +1,8 @@ {-| Module : Lua.LPeg-Copyright : © 2021-2022 Albert Krewinkel+Copyright : © 2021-2023 Albert Krewinkel License : MIT-Maintainer : Albert Krewinkel <tarleb+hslua@zeitkraut.de>+Maintainer : Albert Krewinkel <tarleb@hslua.org> Haskell bindings to the LPeg Lua package. -}
test/test-lpeg.hs view
@@ -2,9 +2,9 @@ {-# OPTIONS_GHC -Wno-warnings-deprecations #-} {-| Module : Main-Copyright : © 2021-2022 Albert Krewinkel+Copyright : © 2021-2023 Albert Krewinkel License : MIT-Maintainer : Albert Krewinkel <albert+hslua@zeitkraut.de>+Maintainer : Albert Krewinkel <tarleb@hslua.org> Tests for the @lpeg@ Lua package. -}