hslua-cli 1.4.3 → 1.4.4
raw patch · 5 files changed
+27/−25 lines, 5 filesdep ~bytestringPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: bytestring
API changes (from Hackage documentation)
Files
- CHANGELOG.md +7/−1
- LICENSE +1/−1
- app/hslua.hs +1/−1
- hslua-cli.cabal +17/−21
- src/HsLua/CLI.hs +1/−1
CHANGELOG.md view
@@ -2,9 +2,15 @@ `hslua-cli` uses [PVP Versioning](https://pvp.haskell.org). +## hslua-cli-1.4.4++Released 2026-01-08.++- Dropped support for GHC older than 9.6.+ ## hslua-cli-1.4.3 -Release pending.+Released 2024-06-28. - Include copyright notice when printing version info; i.e., the behavior is now closer to that of the default `lua`
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-2024 Albert Krewinkel+Copyright : © 2022-2026 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tarleb@hslua.org>
hslua-cli.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: hslua-cli-version: 1.4.3+version: 1.4.4 synopsis: Command-line interface for Lua description: Provides an embeddable command-line interface for Lua. The interface is compatible with the standard Lua@@ -12,21 +12,15 @@ license-file: LICENSE author: Albert Krewinkel maintainer: Albert Krewinkel <tarleb@hslua.org>-copyright: © 2022-2024 Albert Krewinkel+copyright: © 2022-2026 Albert Krewinkel category: Foreign build-type: Simple extra-doc-files: README.md CHANGELOG.md-tested-with: GHC == 8.4.4- , GHC == 8.6.5- , GHC == 8.8.4- , GHC == 8.10.7- , GHC == 9.0.2- , GHC == 9.2.8- , GHC == 9.4.8- , GHC == 9.6.5- , GHC == 9.8.2- , GHC == 9.10.1+tested-with: GHC == 9.6+ , GHC == 9.8+ , GHC == 9.10+ , GHC == 9.12 source-repository head type: git@@ -39,21 +33,22 @@ common common-options build-depends: base >= 4.9.1 && < 5- , bytestring , hslua-core >= 2.3 && < 2.4 ghc-options: -Wall- -Wcompat+ -Wcpp-undef+ -Werror=missing-home-modules -Widentities- -Wincomplete-uni-patterns -Wincomplete-record-updates- if impl(ghc >= 8.0)- ghc-options: -Wredundant-constraints- if impl(ghc >= 8.2)- ghc-options: -fhide-source-paths- if impl(ghc >= 8.4)- ghc-options: -Wmissing-export-lists+ -Wincomplete-uni-patterns+ -Wnoncanonical-monad-instances -Wpartial-fields+ -Wredundant-constraints+ -fhide-source-paths+ if impl(ghc >= 8.10)+ ghc-options: -Wunused-packages+ if impl(ghc >= 9.0)+ ghc-options: -Winvalid-haddock default-language: Haskell2010 @@ -62,6 +57,7 @@ hs-source-dirs: src exposed-modules: HsLua.CLI build-depends: base >= 4.11 && < 5+ , bytestring >= 0.10.2 && < 0.13 , hslua-marshalling >= 2.2 && < 2.4 , hslua-repl >= 0.1 && < 0.2 , lua >= 2.3 && < 2.4
src/HsLua/CLI.hs view
@@ -4,7 +4,7 @@ {-# LANGUAGE PatternSynonyms #-} {- | Module : HsLua.CLI-Copyright : Copyright © 2017-2024 Albert Krewinkel+Copyright : Copyright © 2017-2026 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tarleb@hslua.org>