]> git.ipfire.org Git - thirdparty/LuaJIT.git/commitdiff
RELEASE LuaJIT-2.0.5 v2.0.5
authorMike Pall <mike>
Mon, 1 May 2017 18:10:28 +0000 (20:10 +0200)
committerMike Pall <mike>
Mon, 1 May 2017 18:10:28 +0000 (20:10 +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 b29f10317396efcf0f2735f95365a5a49951c679..ecce9ec5f3fa8c81b19769d837552b2110213b84 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
 
 MAJVER=  2
 MINVER=  0
-RELVER=  4
+RELVER=  5
 VERSION= $(MAJVER).$(MINVER).$(RELVER)
 ABIVER=  5.1
 
diff --git a/README b/README
index 1b0abed2f0451ed3d94eff710107a960dcec575d..6cb7cebb74e1f8dfd3f0da04be35a528541b8077 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-README for LuaJIT 2.0.4
+README for LuaJIT 2.0.5
 -----------------------
 
 LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language.
index bde799f6ed0092c9451bd54333bd4bf9cd9a4204..4a4d4fb9188fb853e402b4fd05ad47d6c572b22d 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.4</strong>.<br>
+The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT&nbsp;2.0.5</strong>.<br>
 </p>
 <p>
 Please check the
index f7a560f3fdb87b102154105dd8c0d6a95106284c..4bcc506a5b17b42027082f1e53fc65fe33e9b46f 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.4.tar.gz
-cd LuaJIT-2.0.4</pre>
+tar zxf LuaJIT-2.0.5.tar.gz
+cd LuaJIT-2.0.5</pre>
 <h3>Building LuaJIT</h3>
 <p>
 The supplied Makefiles try to auto-detect the settings needed for your
index 1232b84f57e6b48f1efcbf7d1828f9cbce827e26..331c22df3d53a7a03be46bf7e2c2d61166b90d01 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.4/jit</tt> on POSIX
+this is <tt>/usr/local/share/luajit-2.0.5/jit</tt> on POSIX
 systems.
 </p>
 
index a652b40d461f5cfb8d898fb5cb2c6bb120adfb64..36840ab87800f67ba13303ad61cf65dcc7565d62 100644 (file)
@@ -1,7 +1,7 @@
 # Package information for LuaJIT to be used by pkg-config.
 majver=2
 minver=0
-relver=4
+relver=5
 version=${majver}.${minver}.${relver}
 abiver=5.1
 
index bd172dbe3ef5885591e7e6acd96829d12bd5b63c..f7f81a4e6084e2c19fc0d29b0b9f3d76c20e5d0a 100644 (file)
@@ -12,7 +12,7 @@
 
 MAJVER=  2
 MINVER=  0
-RELVER=  4
+RELVER=  5
 ABIVER=  5.1
 NODOTABIVER= 51
 
index a4cd5f202acda9019353667082e4188b1a70f123..a2f84aaf3f5fb29f96634dbf9fcb28b3e20b02eb 100644 (file)
@@ -41,7 +41,7 @@
 
 -- Cache some library functions and objects.
 local jit = require("jit")
-assert(jit.version_num == 20004, "LuaJIT core/library version mismatch")
+assert(jit.version_num == 20005, "LuaJIT core/library version mismatch")
 local jutil = require("jit.util")
 local vmdef = require("jit.vmdef")
 local bit = require("bit")
index d548b1a7f8fef629414fe1a8fff8cdfcc35ee306..aa677dfc3410787b50dff1043170165b043a0aa6 100644 (file)
@@ -11,7 +11,7 @@
 ------------------------------------------------------------------------------
 
 local jit = require("jit")
-assert(jit.version_num == 20004, "LuaJIT core/library version mismatch")
+assert(jit.version_num == 20005, "LuaJIT core/library version mismatch")
 local bit = require("bit")
 
 -- Symbol name prefix for LuaJIT bytecode.
index 6c6abb66b9d2374dfc6fe464a2e406eaea82844a..666ba438fa906caa148b2512b84d9914848ba21a 100644 (file)
@@ -55,7 +55,7 @@
 
 -- Cache some library functions and objects.
 local jit = require("jit")
-assert(jit.version_num == 20004, "LuaJIT core/library version mismatch")
+assert(jit.version_num == 20005, "LuaJIT core/library version mismatch")
 local jutil = require("jit.util")
 local vmdef = require("jit.vmdef")
 local funcinfo, funcbc = jutil.funcinfo, jutil.funcbc
index 0f5407a17befe9d76301b368d77150c1c74dc1f2..47ee39410fa0be5bf8759b02b2bb3107792c9ad0 100644 (file)
@@ -59,7 +59,7 @@
 
 -- Cache some library functions and objects.
 local jit = require("jit")
-assert(jit.version_num == 20004, "LuaJIT core/library version mismatch")
+assert(jit.version_num == 20005, "LuaJIT core/library version mismatch")
 local jutil = require("jit.util")
 local vmdef = require("jit.vmdef")
 local funcinfo, traceinfo = jutil.funcinfo, jutil.traceinfo
index 73b80f11527b04d6a02af8a723b704e2554b325b..b33e91b774f61addc3a160b8b30bc8f530e9a30a 100644 (file)
@@ -37,7 +37,7 @@
 #endif
 #define LUA_LROOT      "/usr/local"
 #define LUA_LUADIR     "/lua/5.1/"
-#define LUA_LJDIR      "/luajit-2.0.4/"
+#define LUA_LJDIR      "/luajit-2.0.5/"
 
 #ifdef LUA_ROOT
 #define LUA_JROOT      LUA_ROOT
index 1709ca2610daf621ab2bf1ad0d37abb5aff9f236..c5ff3acb48d202e25b38fe6f71b7863df2302a14 100644 (file)
@@ -30,9 +30,9 @@
 
 #include "lua.h"
 
-#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_VERSION         "LuaJIT 2.0.5"
+#define LUAJIT_VERSION_NUM     20005  /* Version 2.0.5 = 02.00.05. */
+#define LUAJIT_VERSION_SYM     luaJIT_version_2_0_5
 #define LUAJIT_COPYRIGHT       "Copyright (C) 2005-2017 Mike Pall"
 #define LUAJIT_URL             "http://luajit.org/"