]> git.ipfire.org Git - thirdparty/LuaJIT.git/commitdiff
RELEASE LuaJIT-2.0.3 v2.0.3
authorMike Pall <mike>
Wed, 12 Mar 2014 12:24:07 +0000 (13:24 +0100)
committerMike Pall <mike>
Wed, 12 Mar 2014 12:24:07 +0000 (13:24 +0100)
13 files changed:
Makefile
README
doc/changes.html
doc/install.html
doc/running.html
etc/luajit.pc
src/Makefile
src/jit/bc.lua
src/jit/bcsave.lua
src/jit/dump.lua
src/jit/v.lua
src/luaconf.h
src/luajit.h

index 900b43bba7dfaf528166b47747b9cbe23033357b..b23b64816d21061c89d7062400f9480bea92abb7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
 
 MAJVER=  2
 MINVER=  0
-RELVER=  2
+RELVER=  3
 VERSION= $(MAJVER).$(MINVER).$(RELVER)
 ABIVER=  5.1
 
diff --git a/README b/README
index b9351f60cb4bfb846bd2f460aa1f3f831c8203c2..902a6d2e40dccb450b1dcf690cdde870581584c3 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-README for LuaJIT 2.0.2
+README for LuaJIT 2.0.3
 -----------------------
 
 LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language.
index f024701abad26994f67cbb940583701dddaab004..984122939736eb30d03f7f08da265fa74e9cc1c7 100644 (file)
@@ -63,7 +63,7 @@ div.major { max-width: 600px; padding: 1em; margin: 1em 0 1em 0; }
 <div id="main">
 <p>
 This is a list of changes between the released versions of LuaJIT.<br>
-The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT&nbsp;2.0.2</strong>.<br>
+The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT&nbsp;2.0.3</strong>.<br>
 </p>
 <p>
 Please check the
index baf1469041f9aa74ea9daca643a3dc2e6a332d1e..2388ff338e5b7c31201627782462dc70acbea568 100644 (file)
@@ -188,8 +188,8 @@ open a terminal window and change to this directory. Now unpack the archive
 and change to the newly created directory:
 </p>
 <pre class="code">
-tar zxf LuaJIT-2.0.2.tar.gz
-cd LuaJIT-2.0.2</pre>
+tar zxf LuaJIT-2.0.3.tar.gz
+cd LuaJIT-2.0.3</pre>
 <h3>Building LuaJIT</h3>
 <p>
 The supplied Makefiles try to auto-detect the settings needed for your
index bbbe8be66696955a3c1d01a05ab6d8d6c7142642..c01c52d5ad0bd99702eb68ec2257aca09050cf45 100644 (file)
@@ -186,7 +186,7 @@ itself. For a description of their options and output format, please
 read the comment block at the start of their source.
 They can be found in the <tt>lib</tt> directory of the source
 distribution or installed under the <tt>jit</tt> directory. By default
-this is <tt>/usr/local/share/luajit-2.0.2/jit</tt> on POSIX
+this is <tt>/usr/local/share/luajit-2.0.3/jit</tt> on POSIX
 systems.
 </p>
 
index 482339655441a9554389598040bdafef37fd0565..d3f0cf30b42e7dda5e7cd2be3b53406968604c64 100644 (file)
@@ -1,7 +1,7 @@
 # Package information for LuaJIT to be used by pkg-config.
 majver=2
 minver=0
-relver=2
+relver=3
 version=${majver}.${minver}.${relver}
 abiver=5.1
 
index 72bc912a3e4d9690cde61e68eb539997015099c1..9551781a78f4ff7ca76feee335b5ad9cdd01b3e1 100644 (file)
@@ -12,7 +12,7 @@
 
 MAJVER=  2
 MINVER=  0
-RELVER=  2
+RELVER=  3
 ABIVER=  5.1
 NODOTABIVER= 51
 
index 9192cb980cfce1f500d366bd2a268aaaf7e988df..9df19c7bfeebcfd9b9755593513c036023e31477 100644 (file)
@@ -41,7 +41,7 @@
 
 -- Cache some library functions and objects.
 local jit = require("jit")
-assert(jit.version_num == 20002, "LuaJIT core/library version mismatch")
+assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
 local jutil = require("jit.util")
 local vmdef = require("jit.vmdef")
 local bit = require("bit")
index 13b79db08448094e39a192bc8ac643c800805f3b..f55bda970be6ffb0bb47afe1a83b90c726be26d7 100644 (file)
@@ -11,7 +11,7 @@
 ------------------------------------------------------------------------------
 
 local jit = require("jit")
-assert(jit.version_num == 20002, "LuaJIT core/library version mismatch")
+assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
 local bit = require("bit")
 
 -- Symbol name prefix for LuaJIT bytecode.
index 6a77f9280ba36be5f530b600c093297556c6b1bb..556ce88300ae7ed03e3f44adc7b6b949545a7cc5 100644 (file)
@@ -55,7 +55,7 @@
 
 -- Cache some library functions and objects.
 local jit = require("jit")
-assert(jit.version_num == 20002, "LuaJIT core/library version mismatch")
+assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
 local jutil = require("jit.util")
 local vmdef = require("jit.vmdef")
 local funcinfo, funcbc = jutil.funcinfo, jutil.funcbc
index b9e0eb5b03f3ab30e72e594cb13530efb2e62c99..197e67c69e5094e001ffc75dc8f73cb030a4027d 100644 (file)
@@ -59,7 +59,7 @@
 
 -- Cache some library functions and objects.
 local jit = require("jit")
-assert(jit.version_num == 20002, "LuaJIT core/library version mismatch")
+assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
 local jutil = require("jit.util")
 local vmdef = require("jit.vmdef")
 local funcinfo, traceinfo = jutil.funcinfo, jutil.traceinfo
index 2cb4c1604197ba61aea73296d38ff8d5cef8e215..affb7da8f597fffcffdb96b6e2bd2afef13c40d6 100644 (file)
@@ -37,7 +37,7 @@
 #endif
 #define LUA_LROOT      "/usr/local"
 #define LUA_LUADIR     "/lua/5.1/"
-#define LUA_LJDIR      "/luajit-2.0.2/"
+#define LUA_LJDIR      "/luajit-2.0.3/"
 
 #ifdef LUA_ROOT
 #define LUA_JROOT      LUA_ROOT
index 7bb93170419ccb976272966914048eb75f488887..be721cf4b8edc69ebff2a152981f59828b8a8bac 100644 (file)
@@ -30,9 +30,9 @@
 
 #include "lua.h"
 
-#define LUAJIT_VERSION         "LuaJIT 2.0.2"
-#define LUAJIT_VERSION_NUM     20002  /* Version 2.0.2 = 02.00.02. */
-#define LUAJIT_VERSION_SYM     luaJIT_version_2_0_2
+#define LUAJIT_VERSION         "LuaJIT 2.0.3"
+#define LUAJIT_VERSION_NUM     20003  /* Version 2.0.3 = 02.00.03. */
+#define LUAJIT_VERSION_SYM     luaJIT_version_2_0_3
 #define LUAJIT_COPYRIGHT       "Copyright (C) 2005-2014 Mike Pall"
 #define LUAJIT_URL             "http://luajit.org/"