packages feed

hslua-examples 2.0.1 → 2.0.2

raw patch · 4 files changed

+18/−13 lines, 4 filesdep −hslua-marshallingdep ~hsluadep ~lua

Dependencies removed: hslua-marshalling

Dependency ranges changed: hslua, lua

Files

CHANGELOG.md view
@@ -2,9 +2,15 @@  `hslua-examples` uses [PVP Versioning][]. +## hslua-examples-2.0.2++Released 2023-03-13.++-   Allowed hslua*-2.3.+ ## hslua-examples-2.0.1 -Released 29-01-2022.+Released 2022-01-29.  -   Allowed hslua-2.1, hslua-marshalling-2.1. 
LICENSE view
@@ -1,7 +1,7 @@-Copyright © 1994-2020 Lua.org, PUC-Rio.+Copyright © 1994-2022 Lua.org, PUC-Rio. Copyright © 2007-2012 Gracjan Polak Copyright © 2012-2015 Ömer Sinan Ağacan-Copyright © 2016-2022 Albert Krewinkel+Copyright © 2016-2023 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.1+version:             2.0.2 synopsis:            Examples of how to combine Haskell and Lua. description:         The HsLua modules provide wrappers of Lua language                      interpreter as described on the official@@ -14,8 +14,8 @@ license:             MIT license-File:        LICENSE author:              Albert Krewinkel-copyright:           © 2020–2021 Albert Krewinkel-maintainer:          Albert Krewinkel <albert+hslua@zeitkraut.de>+copyright:           © 2020–2023 Albert Krewinkel+maintainer:          Albert Krewinkel <tarleb@hslua.org> category:            Foreign build-type:          Simple extra-source-files:  README.md@@ -47,22 +47,21 @@   import:              common-options   main-is:             print-version.hs   hs-source-dirs:      print-version-  build-depends:       lua               >= 2.0 && < 2.2+  build-depends:       lua               >= 2.0 && < 2.4  executable run-lua   import:              common-options   main-is:             run-lua.hs   hs-source-dirs:      run-lua   build-depends:       bytestring-                     , hslua             >= 2.0 && < 2.2+                     , hslua             >= 2.0 && < 2.4  executable wishlist   import:              common-options   main-is:             wishlist.hs   hs-source-dirs:      wishlist   build-depends:       bytestring-                     , hslua             >= 2.0 && < 2.2-                     , hslua-marshalling >= 2.0 && < 2.2+                     , hslua             >= 2.0 && < 2.4                      , text  executable factorial@@ -70,10 +69,10 @@   main-is:             factorial.hs   hs-source-dirs:      factorial   build-depends:       bytestring-                     , hslua             >= 2.0 && < 2.2+                     , hslua             >= 2.0 && < 2.4  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.2+  build-depends:       lua               >= 2.0 && < 2.4
wishlist/wishlist.hs view
@@ -73,6 +73,6 @@ main = do   filterFile <- fmap (!! 0) getArgs -- get first argument   result <- run $ do-    _status <- dofile filterFile+    _status <- dofile (Just filterFile)     filterM hasPredicate wishes   print result