Skip to content

Commit 92699e9

Browse files
author
Mike Pall
committed
RELEASE LuaJIT-2.0.1
1 parent e822bdb commit 92699e9

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
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= 0
18+
RELVER= 1
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.0
1+
README for LuaJIT 2.0.1
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.0</strong>.<br>
66+
The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT&nbsp;2.0.1</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.0.tar.gz
192-
cd LuaJIT-2.0.0</pre>
191+
tar zxf LuaJIT-2.0.1.tar.gz
192+
cd LuaJIT-2.0.1</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.0/jit</tt> on POSIX
189+
this is <tt>/usr/local/share/luajit-2.0.1/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=0
4+
relver=1
55
version=${majver}.${minver}.${relver}
66
abiver=5.1
77

src/luaconf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
#define LUA_LDIR LUA_ROOT "share/lua/5.1/"
3131
#define LUA_CDIR LUA_ROOT "lib/lua/5.1/"
3232
#ifdef LUA_XROOT
33-
#define LUA_JDIR LUA_XROOT "share/luajit-2.0.0/"
33+
#define LUA_JDIR LUA_XROOT "share/luajit-2.0.1/"
3434
#define LUA_XPATH \
3535
";" LUA_XROOT "share/lua/5.1/?.lua;" LUA_XROOT "share/lua/5.1/?/init.lua"
3636
#define LUA_XCPATH LUA_XROOT "lib/lua/5.1/?.so;"
3737
#else
38-
#define LUA_JDIR LUA_ROOT "share/luajit-2.0.0/"
38+
#define LUA_JDIR LUA_ROOT "share/luajit-2.0.1/"
3939
#define LUA_XPATH
4040
#define LUA_XCPATH
4141
#endif

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.0"
34-
#define LUAJIT_VERSION_NUM 20000 /* Version 2.0.0 = 02.00.00. */
35-
#define LUAJIT_VERSION_SYM luaJIT_version_2_0_0
33+
#define LUAJIT_VERSION "LuaJIT 2.0.1"
34+
#define LUAJIT_VERSION_NUM 20001 /* Version 2.0.1 = 02.00.01. */
35+
#define LUAJIT_VERSION_SYM luaJIT_version_2_0_1
3636
#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2013 Mike Pall"
3737
#define LUAJIT_URL "http://luajit.org/"
3838

0 commit comments

Comments
 (0)