hslua-module-system v0.2.0 Release Notes

Release Date: 2019-05-01 // almost 5 years ago
  • All fields and functions are now exported from the Haskell module under the same name as that used in Lua.

    ๐Ÿ†• New fields

    • arch: processor architecture.
    • compiler_name: Haskell compiler that was used to compile the module.
    • compiler_version: version of the compiler.
    • os: operating system.

    ๐Ÿ†• New functions

    • mkdir: create a new directory.
    • ๐Ÿšš rmdir: remove a directory.
    • with_env: perform action with custom environment.
    • with_wd: perform action in another directory.

    โœ‚ Removed or renamed functions

    • currentdir was renamed to getwd.
    • chdir was renamed to setwd.
    • ๐Ÿšš pwd was removed.

    Misc

    • ๐Ÿ›  Fix typos and copy-paste errors in docs, tests.