zoukankan      html  css  js  c++  java
  • Lua history

    Lua: version history

    Lua
    Version history

    5.2
    ·
    5.1
    ·
    5.0
    ·
    4.0
    ·
    3.2
    ·
    3.1
    ·
    3.0
    ·
    2.5
    ·
    2.4
    ·
    2.2
    ·
    2.1
    ·
    1.1
    ·
    1.0


    Here is a chronology of the versions of Lua.
    The evolution of Lua
    is documented in a
    paper
    presented at
    HOPL III,
    the Third ACM SIGPLAN History of Programming Languages Conference
    ,
    in 2007.
    The source code and documentation for all releases is available for
    download.



    1.0
    1.1
    2.1
    2.2
    2.4
    2.5
    3.0
    3.1
    3.2
    4.0
    5.0
    5.1
    5.2

    Numbering scheme

    The releases of Lua are numbered x.y.z,
    where x.y is the version and z is the release.
    Different releases for the same version correspond strictly to bug fixes;
    there are no new features.
    In particular,
    different releases for the same version have the same
    reference manual,
    the same virtual machine, and are binary compatible (ABI compatible).

    Different versions are really different.
    The API is likely to be a little different
    (but with compatibility switches),
    but there is no ABI compatibility and applications must be recompiled.
    The virtual machine is also very likely to be different in a new version.

    Lua 5.2

    Lua 5.2
    was released on 16 Dec 2011.
    Its main new features are
    yieldable pcall and metamethods,
    new lexical scheme for globals,
    ephemeron tables,
    new library for bitwise operations,
    light C functions,
    emergency garbage collector,
    goto statement,
    and
    finalizers for tables.

    The current release is
    Lua 5.2.0,
    released on 16 Dec 2011.
    [NEW]

    Lua 5.1

    Lua 5.1
    was released on 21 Feb 2006.
    Its main new features were
    a new module system,
    incremental garbage collection,
    new mechanism for varargs,
    new syntax for long strings and comments,
    mod and length operators,
    metatables for all types,
    new configuration scheme via luaconf.h,
    and a
    fully reentrant parser.

    The current release is
    Lua 5.1.5,
    released on 17 Feb 2012.
    [NEW]

    Lua 5.0

    Lua 5.0
    was released on 11 Apr 2003.

    Its main new features were
    collaborative multithreading via Lua coroutines,
    full lexical scoping instead of upvalues,
    and
    metatables instead of tags and tag methods.
    Lua 5.0 also introduces
    booleans,
    proper tail calls,
    and weak tables.
    Other features are
    better support for packages,
    new API for loading Lua chunks,
    new error handling protocol,
    better error messages,
    and much more.
    Lua 5.0 is the first version to be released under the
    new license.

    The last release was
    Lua 5.0.3,
    released on 26 Jun 2006.

    Lua 4.0

    Lua 4.0
    was released on 06 Nov 2000.
    Its main new features were
    multiples states,
    a new API,
    "for" statements,
    and full speed execution with full debug information.
    Also,
    Lua 4.0 no longer has built-in functions:
    all functions in the standard library are written using the official API.

    The last release was
    Lua 4.0.1,
    released on 04 Jul 2002.

    Lua 3.2

    Lua 3.2
    was released on 08 Jul 1999.
    Its main new features were
    a debug library
    and
    new table functions.

    The last release was
    Lua 3.2.2,
    released on 22 Feb 2000.

    Lua 3.1

    Lua 3.1
    was released on 11 Jul 1998.
    Its main new features were
    anonymous functions and
    function closures via "upvalues".
    (Lua 5.0 brought full lexical scoping and dropped upvalues.)
    This brings a flavor of functional programming to Lua.
    There is also support for multiple global contexts,
    but the API is not fully reentrant
    (this had to wait until Lua 4.0).
    Lua 3.1 also saw a
    major code re-organization and clean-up,
    with much reduced module interdependencies.

    Lua 3.0

    Lua 3.0
    was released on 01 Jul 1997.
    Its main new feature was
    tag methods as a powerful replacement for fallbacks.
    Lua 3.0 also introduced auxlib,
    a library for helping writing Lua libraries,
    and support for conditional compilation
    (dropped in Lua 4.0).

    Lua 2.5

    Lua 2.5
    was released on 19 Nov 1996.
    Its main new features were
    pattern matching and vararg functions.

    Lua 2.4

    Lua 2.4
    was released on 14 May 1996.
    Its main new features were
    the external compiler luac,
    an extended debug interface with hooks,
    and the "getglobal" fallback.

    Lua 2.3

    Lua 2.3 was never released publicly; it only existed as a beta version.

    Lua 2.2

    Lua 2.2
    was released on 28 Nov 1995.
    Its main new features were
    long strings,
    the debug interface,
    better stack tracebacks,
    extended syntax for function definition,
    garbage collection of functions,
    and support for pipes.

    Lua 2.1

    Lua 2.1
    was released on 07 Feb 1995.
    Its main new features were
    extensible semantics via fallbacks
    and support for object-oriented programming.
    This version was described in a
    journal paper.
    Starting with Lua 2.1,
    Lua became freely available for all purposes,
    including commercial uses.

    Lua 1.1

    Lua 1.1
    was released on 08 Jul 1994.
    This was the first public release of Lua and is described in a
    conference paper.
    Lua 1.1 already featured
    powerful data description constructs,
    simple syntax,
    and a bytecode virtual machine.
    Lua 1.1 was freely available for academic purposes;
    commercial uses had to be negotiated, but none ever were.

    Lua 1.0

    Lua 1.0
    was never released publicly,
    but it was up and running on 28 Jul 1993,
    and most probably a couple of months before that.

  • 相关阅读:
    1654. Minimum Jumps to Reach Home
    1129. Shortest Path with Alternating Colors
    1766. Tree of Coprimes
    1368. Minimum Cost to Make at Least One Valid Path in a Grid
    LeetCode 841 钥匙与房间
    LeetCode 268 缺失数字
    LeetCode 136 只出现一次的数字
    LeetCode 461 汉明距离
    LeetCode 557 反转字符串中的单词 III
    LeetCode 392 判断子序列
  • 原文地址:https://www.cnblogs.com/lexus/p/2375529.html
Copyright © 2011-2022 走看看