Skip to content

Commit 69e5342

Browse files
author
Mike Pall
committed
RELEASE LuaJIT-2.0.4
1 parent cd4c59f commit 69e5342

13 files changed

+16
-16
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
MAJVER= 2
1717
MINVER= 0
18-
RELVER= 3
18+
RELVER= 4
1919
VERSION= $(MAJVER).$(MINVER).$(RELVER)
2020
ABIVER= 5.1
2121

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README for LuaJIT 2.0.3
1+
README for LuaJIT 2.0.4
22
-----------------------
33

44
LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language.

doc/changes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ <h1>LuaJIT Change History</h1>
6363
<div id="main">
6464
<p>
6565
This is a list of changes between the released versions of LuaJIT.<br>
66-
The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT&nbsp;2.0.3</strong>.<br>
66+
The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT&nbsp;2.0.4</strong>.<br>
6767
</p>
6868
<p>
6969
Please check the

doc/install.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ <h3>Prerequisites</h3>
188188
and change to the newly created directory:
189189
</p>
190190
<pre class="code">
191-
tar zxf LuaJIT-2.0.3.tar.gz
192-
cd LuaJIT-2.0.3</pre>
191+
tar zxf LuaJIT-2.0.4.tar.gz
192+
cd LuaJIT-2.0.4</pre>
193193
<h3>Building LuaJIT</h3>
194194
<p>
195195
The supplied Makefiles try to auto-detect the settings needed for your

doc/running.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ <h3 id="opt_j"><tt>-j cmd[=arg[,arg...]]</tt></h3>
186186
read the comment block at the start of their source.
187187
They can be found in the <tt>lib</tt> directory of the source
188188
distribution or installed under the <tt>jit</tt> directory. By default
189-
this is <tt>/usr/local/share/luajit-2.0.3/jit</tt> on POSIX
189+
this is <tt>/usr/local/share/luajit-2.0.4/jit</tt> on POSIX
190190
systems.
191191
</p>
192192

etc/luajit.pc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Package information for LuaJIT to be used by pkg-config.
22
majver=2
33
minver=0
4-
relver=3
4+
relver=4
55
version=${majver}.${minver}.${relver}
66
abiver=5.1
77

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
MAJVER= 2
1414
MINVER= 0
15-
RELVER= 3
15+
RELVER= 4
1616
ABIVER= 5.1
1717
NODOTABIVER= 51
1818

src/jit/bc.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
-- Cache some library functions and objects.
4343
local jit = require("jit")
44-
assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
44+
assert(jit.version_num == 20004, "LuaJIT core/library version mismatch")
4545
local jutil = require("jit.util")
4646
local vmdef = require("jit.vmdef")
4747
local bit = require("bit")

src/jit/bcsave.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
------------------------------------------------------------------------------
1212

1313
local jit = require("jit")
14-
assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
14+
assert(jit.version_num == 20004, "LuaJIT core/library version mismatch")
1515
local bit = require("bit")
1616

1717
-- Symbol name prefix for LuaJIT bytecode.

src/jit/dump.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656
-- Cache some library functions and objects.
5757
local jit = require("jit")
58-
assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
58+
assert(jit.version_num == 20004, "LuaJIT core/library version mismatch")
5959
local jutil = require("jit.util")
6060
local vmdef = require("jit.vmdef")
6161
local funcinfo, funcbc = jutil.funcinfo, jutil.funcbc

src/jit/v.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959

6060
-- Cache some library functions and objects.
6161
local jit = require("jit")
62-
assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
62+
assert(jit.version_num == 20004, "LuaJIT core/library version mismatch")
6363
local jutil = require("jit.util")
6464
local vmdef = require("jit.vmdef")
6565
local funcinfo, traceinfo = jutil.funcinfo, jutil.traceinfo

src/luaconf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
#endif
3838
#define LUA_LROOT "/usr/local"
3939
#define LUA_LUADIR "/lua/5.1/"
40-
#define LUA_LJDIR "/luajit-2.0.3/"
40+
#define LUA_LJDIR "/luajit-2.0.4/"
4141

4242
#ifdef LUA_ROOT
4343
#define LUA_JROOT LUA_ROOT

src/luajit.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030

3131
#include "lua.h"
3232

33-
#define LUAJIT_VERSION "LuaJIT 2.0.3"
34-
#define LUAJIT_VERSION_NUM 20003 /* Version 2.0.3 = 02.00.03. */
35-
#define LUAJIT_VERSION_SYM luaJIT_version_2_0_3
33+
#define LUAJIT_VERSION "LuaJIT 2.0.4"
34+
#define LUAJIT_VERSION_NUM 20004 /* Version 2.0.4 = 02.00.04. */
35+
#define LUAJIT_VERSION_SYM luaJIT_version_2_0_4
3636
#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2015 Mike Pall"
3737
#define LUAJIT_URL "http://luajit.org/"
3838

0 commit comments

Comments
 (0)