]> git.ipfire.org Git - thirdparty/LuaJIT.git/commitdiff
RELEASE LuaJIT-2.0.4 v2.0.4
authorMike Pall <mike>
Thu, 14 May 2015 18:29:31 +0000 (20:29 +0200)
committerMike Pall <mike>
Thu, 14 May 2015 18:29:31 +0000 (20:29 +0200)
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 0891b713c5e3012eaedeee9db9b40f8320832120..0cbe741a424cb65797e7adf071ff96c862d81cdb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
 
 MAJVER=  2
 MINVER=  0
-RELVER=  3
+RELVER=  4
 VERSION= $(MAJVER).$(MINVER).$(RELVER)
 ABIVER=  5.1
 
diff --git a/README b/README
index d151bb7b2e89fbd1847c3f910e0d27588dc1fd18..44366af516c484b544e8ad840c823b063ba3597e 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-README for LuaJIT 2.0.3
+README for LuaJIT 2.0.4
 -----------------------
 
 LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language.
index b8714153ca76aa607849a51d15be19ba4c63ea99..d7b83ce68a6e4ec4e383b4cd9efccabccd969590 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.3</strong>.<br>
+The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT&nbsp;2.0.4</strong>.<br>
 </p>
 <p>
 Please check the
index 7369aeb65c062e15b1e14d06767cd33cb331a85d..7a878b1cf8f4683ba197db3eb50321c7071d96a2 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.3.tar.gz
-cd LuaJIT-2.0.3</pre>
+tar zxf LuaJIT-2.0.4.tar.gz
+cd LuaJIT-2.0.4</pre>
 <h3>Building LuaJIT</h3>
 <p>
 The supplied Makefiles try to auto-detect the settings needed for your
index c2ec51132d1c5d2bb01b8641d3c2c7bc4c5c1820..c6e1c296ebad79fc8614f285187cc3e443b1733d 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.3/jit</tt> on POSIX
+this is <tt>/usr/local/share/luajit-2.0.4/jit</tt> on POSIX
 systems.
 </p>
 
index d3f0cf30b42e7dda5e7cd2be3b53406968604c64..a652b40d461f5cfb8d898fb5cb2c6bb120adfb64 100644 (file)
@@ -1,7 +1,7 @@
 # Package information for LuaJIT to be used by pkg-config.
 majver=2
 minver=0
-relver=3
+relver=4
 version=${majver}.${minver}.${relver}
 abiver=5.1
 
index 33b0a43b12c2d6bceddb5ad6f2b619685a4f657d..1d38fa2516b0532bbfa5d7b8ed2c32712c2c6111 100644 (file)
@@ -12,7 +12,7 @@
 
 MAJVER=  2
 MINVER=  0
-RELVER=  3
+RELVER=  4
 ABIVER=  5.1
 NODOTABIVER= 51
 
index a179d50eab3b056d735692fd970c6a0612d8e0a8..46a40892e857c5f7b464eaea370416f292b3e4e7 100644 (file)
@@ -41,7 +41,7 @@
 
 -- Cache some library functions and objects.
 local jit = require("jit")
-assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
+assert(jit.version_num == 20004, "LuaJIT core/library version mismatch")
 local jutil = require("jit.util")
 local vmdef = require("jit.vmdef")
 local bit = require("bit")
index 2ba234d04d7618b2f936271d254262833013a448..0319b3d25665cc6cccf5796d917888327be84eff 100644 (file)
@@ -11,7 +11,7 @@
 ------------------------------------------------------------------------------
 
 local jit = require("jit")
-assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
+assert(jit.version_num == 20004, "LuaJIT core/library version mismatch")
 local bit = require("bit")
 
 -- Symbol name prefix for LuaJIT bytecode.
index 589543f1fddee47b9c039ac754b63ddfad7ea377..d15c528ea808e0f6261fe0487a169db7b90ab7b9 100644 (file)
@@ -55,7 +55,7 @@
 
 -- Cache some library functions and objects.
 local jit = require("jit")
-assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
+assert(jit.version_num == 20004, "LuaJIT core/library version mismatch")
 local jutil = require("jit.util")
 local vmdef = require("jit.vmdef")
 local funcinfo, funcbc = jutil.funcinfo, jutil.funcbc
index c622443d96d57d41b089f0273a79411a8a219b0d..32666fd1a2cc0f26f22d65be41d0ee6946578fd0 100644 (file)
@@ -59,7 +59,7 @@
 
 -- Cache some library functions and objects.
 local jit = require("jit")
-assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
+assert(jit.version_num == 20004, "LuaJIT core/library version mismatch")
 local jutil = require("jit.util")
 local vmdef = require("jit.vmdef")
 local funcinfo, traceinfo = jutil.funcinfo, jutil.traceinfo
index 7f57bae1a07905368d349daca08e9ce667bc5e4a..84fa6418766a2e3639c2d39240e415ec38782640 100644 (file)
@@ -37,7 +37,7 @@
 #endif
 #define LUA_LROOT      "/usr/local"
 #define LUA_LUADIR     "/lua/5.1/"
-#define LUA_LJDIR      "/luajit-2.0.3/"
+#define LUA_LJDIR      "/luajit-2.0.4/"
 
 #ifdef LUA_ROOT
 #define LUA_JROOT      LUA_ROOT
index 901807abe8f6f3d6ee09dab22caa59854569fdd7..9ced18eb8262d6f85349deb6f29ed7729efe70c5 100644 (file)
@@ -30,9 +30,9 @@
 
 #include "lua.h"
 
-#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_VERSION         "LuaJIT 2.0.4"
+#define LUAJIT_VERSION_NUM     20004  /* Version 2.0.4 = 02.00.04. */
+#define LUAJIT_VERSION_SYM     luaJIT_version_2_0_4
 #define LUAJIT_COPYRIGHT       "Copyright (C) 2005-2015 Mike Pall"
 #define LUAJIT_URL             "http://luajit.org/"