Skip to content

Releases: freebsd/lutok

lutok 0.6.2

Choose a tag to compare

@ngie-eign ngie-eign released this 27 Dec 21:10

What's Changed

Full Changelog: lutok-0.6.1...lutok-0.6.2

lutok-0.6.1

Choose a tag to compare

@ngie-eign ngie-eign released this 29 Mar 05:53

What's Changed

Full Changelog: lutok-0.6...lutok-0.6.1

Lutok 0.6: minor modernization release

Choose a tag to compare

@ngie-eign ngie-eign released this 01 Jan 08:01

Changes in version 0.6

Released on 2024/01/04.

  • Remove lingering C++-11 support. The project now requires a C++14 compliant toolchain to build.

  • Fix a Doxygen warning by deleting the stack_cleaner copy/assignment operator.

  • Vendor the ATF m4 files from freebsd/atf@atf-0.22 ,

  • m4/lua.m4: remove legacy lua-config support in favor of pkg_config.

  • Fix a benign buffer overrun complaint from gcc 13.2.

  • Rename --with-atf to --enable-atf.

Full Changelog: lutok-0.5...lutok-0.6

lutok-0.5: minor bugfixes

Choose a tag to compare

@ngie-eign ngie-eign released this 26 Nov 01:19

Changes in version 0.5

Released on 2024/11/25.

  • Use more modern autotools macros. Bump the minimum autoconf version to 2.68 to
    support this change.

  • Modify build code to improve Lua 5.4 support.

  • Replace std::auto_ptr use with std::unique_ptr use. This improves C++
    standard support and fixes the build with newer C++ standards.

Full Changelog: lutok-0.4...lutok-0.5

Lutok 0.4: New features and API cleanup

Choose a tag to compare

@jmmv jmmv released this 04 Feb 21:33

Changes in version 0.4

Released on 2013/12/07.

  • Cope with the lack of AM_PROG_AR in configure.ac, which first
    appeared in Automake 1.11.2. Fixes a problem in Ubuntu 10.04
    LTS, which appears stuck in 1.11.1.
  • Stopped shipping an Atffile. The only supported way to run the tests
    is via Kyua.

Interface changes:

  • Issue 5: New methods added to the state class: open_all.
  • Removed default parameter values from all state methods and all
    standalone operations. It is often unclear what the default value is
    given that it depends on the specific Lua operation. Being explicit
    on the caller side is clearer.
  • Modified operations do_file and do_string to support passing a number
    of arguments to the loaded chunks and an error handler to the backing
    pcall call.

Lutok 0.3: New support for Lua 5.2

Choose a tag to compare

@jmmv jmmv released this 04 Feb 21:32

Changes in version 0.3

Released on 2013/06/14.

  • Issue 1: Added support for Lua 5.2 while maintaining support for Lua
    5.1. Applications using Lutok can be modified to use the new
    interface in this new version and thus support both Lua releases.
    However, because of incompatible changes to the Lua API, this release
    of Lutok is incompatible with previous releases as well.
  • Issue 3: Tweaked configure to look for Lua using the pkg-config names
    lua-5.2 and lua-5.1. These are the names used by FreeBSD.

Interface changes:

  • New global constants: registry_index.
  • New methods added to the state class: get_global_table.
  • Removed global constants: globals_index.

Lutok 0.2: Addition of methods to deal with metatables

Choose a tag to compare

@jmmv jmmv released this 04 Feb 21:31

Changes in version 0.2

Released on 2012/05/30.

  • New global constants: globals_index.
  • New methods added to the state class: get_metafield, get_metatable,
    insert, push_value, raw_get and raw_set.
  • Acknowledged that Lua 5.2 is currently not supported.

Lutok 0.1: First public release

Choose a tag to compare

@jmmv jmmv released this 04 Feb 21:31

Changes in version 0.1

Released on 2012/01/29.

  • This is the first public release of the Lutok package.