hslua-examples 2.0.0 → 2.0.1
raw patch · 3 files changed
+22/−12 lines, 3 filesdep ~hsluadep ~hslua-marshallingdep ~lua
Dependency ranges changed: hslua, hslua-marshalling, lua
Files
- CHANGELOG.md +14/−4
- LICENSE +1/−1
- hslua-examples.cabal +7/−7
CHANGELOG.md view
@@ -1,7 +1,17 @@-## Changelog+# Changelog -### 2.0.0+`hslua-examples` uses [PVP Versioning][]. -Release pending.+## hslua-examples-2.0.1 -Complete rewrite.+Released 29-01-2022.++- Allowed hslua-2.1, hslua-marshalling-2.1.++## hslua-examples-2.0.0++Released 2021-10-21.++- Complete rewrite.++ [PVP Versioning]: https://pvp.haskell.org
LICENSE view
@@ -1,7 +1,7 @@ Copyright © 1994-2020 Lua.org, PUC-Rio. Copyright © 2007-2012 Gracjan Polak Copyright © 2012-2015 Ömer Sinan Ağacan-Copyright © 2016-2021 Albert Krewinkel+Copyright © 2016-2022 Albert Krewinkel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the
hslua-examples.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: hslua-examples-version: 2.0.0+version: 2.0.1 synopsis: Examples of how to combine Haskell and Lua. description: The HsLua modules provide wrappers of Lua language interpreter as described on the official@@ -47,22 +47,22 @@ import: common-options main-is: print-version.hs hs-source-dirs: print-version- build-depends: lua >= 2.0 && < 2.1+ build-depends: lua >= 2.0 && < 2.2 executable run-lua import: common-options main-is: run-lua.hs hs-source-dirs: run-lua build-depends: bytestring- , hslua >= 2.0 && < 2.1+ , hslua >= 2.0 && < 2.2 executable wishlist import: common-options main-is: wishlist.hs hs-source-dirs: wishlist build-depends: bytestring- , hslua >= 2.0 && < 2.1- , hslua-marshalling >= 2.0 && < 2.1+ , hslua >= 2.0 && < 2.2+ , hslua-marshalling >= 2.0 && < 2.2 , text executable factorial@@ -70,10 +70,10 @@ main-is: factorial.hs hs-source-dirs: factorial build-depends: bytestring- , hslua >= 2.0 && < 2.1+ , hslua >= 2.0 && < 2.2 executable low-level-factorial import: common-options main-is: low-level-factorial.hs hs-source-dirs: low-level-factorial- build-depends: lua >= 2.0 && < 2.1+ build-depends: lua >= 2.0 && < 2.2