summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--README2
-rw-r--r--doc/changes.html2
-rw-r--r--doc/install.html4
-rw-r--r--doc/running.html2
-rw-r--r--etc/luajit.pc2
-rw-r--r--src/Makefile2
-rw-r--r--src/jit/bc.lua2
-rw-r--r--src/jit/bcsave.lua2
-rw-r--r--src/jit/dump.lua2
-rw-r--r--src/jit/v.lua2
-rw-r--r--src/luaconf.h2
-rw-r--r--src/luajit.h6
13 files changed, 16 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index 900b43bb..b23b6481 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
15 15
16MAJVER= 2 16MAJVER= 2
17MINVER= 0 17MINVER= 0
18RELVER= 2 18RELVER= 3
19VERSION= $(MAJVER).$(MINVER).$(RELVER) 19VERSION= $(MAJVER).$(MINVER).$(RELVER)
20ABIVER= 5.1 20ABIVER= 5.1
21 21
diff --git a/README b/README
index b9351f60..902a6d2e 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
1README for LuaJIT 2.0.2 1README for LuaJIT 2.0.3
2----------------------- 2-----------------------
3 3
4LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language. 4LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language.
diff --git a/doc/changes.html b/doc/changes.html
index f024701a..98412293 100644
--- a/doc/changes.html
+++ b/doc/changes.html
@@ -63,7 +63,7 @@ div.major { max-width: 600px; padding: 1em; margin: 1em 0 1em 0; }
63<div id="main"> 63<div id="main">
64<p> 64<p>
65This is a list of changes between the released versions of LuaJIT.<br> 65This is a list of changes between the released versions of LuaJIT.<br>
66The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT&nbsp;2.0.2</strong>.<br> 66The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT&nbsp;2.0.3</strong>.<br>
67</p> 67</p>
68<p> 68<p>
69Please check the 69Please check the
diff --git a/doc/install.html b/doc/install.html
index baf14690..2388ff33 100644
--- a/doc/install.html
+++ b/doc/install.html
@@ -188,8 +188,8 @@ open a terminal window and change to this directory. Now unpack the archive
188and change to the newly created directory: 188and change to the newly created directory:
189</p> 189</p>
190<pre class="code"> 190<pre class="code">
191tar zxf LuaJIT-2.0.2.tar.gz 191tar zxf LuaJIT-2.0.3.tar.gz
192cd LuaJIT-2.0.2</pre> 192cd LuaJIT-2.0.3</pre>
193<h3>Building LuaJIT</h3> 193<h3>Building LuaJIT</h3>
194<p> 194<p>
195The supplied Makefiles try to auto-detect the settings needed for your 195The supplied Makefiles try to auto-detect the settings needed for your
diff --git a/doc/running.html b/doc/running.html
index bbbe8be6..c01c52d5 100644
--- a/doc/running.html
+++ b/doc/running.html
@@ -186,7 +186,7 @@ itself. For a description of their options and output format, please
186read the comment block at the start of their source. 186read the comment block at the start of their source.
187They can be found in the <tt>lib</tt> directory of the source 187They can be found in the <tt>lib</tt> directory of the source
188distribution or installed under the <tt>jit</tt> directory. By default 188distribution or installed under the <tt>jit</tt> directory. By default
189this is <tt>/usr/local/share/luajit-2.0.2/jit</tt> on POSIX 189this is <tt>/usr/local/share/luajit-2.0.3/jit</tt> on POSIX
190systems. 190systems.
191</p> 191</p>
192 192
diff --git a/etc/luajit.pc b/etc/luajit.pc
index 48233965..d3f0cf30 100644
--- a/etc/luajit.pc
+++ b/etc/luajit.pc
@@ -1,7 +1,7 @@
1# Package information for LuaJIT to be used by pkg-config. 1# Package information for LuaJIT to be used by pkg-config.
2majver=2 2majver=2
3minver=0 3minver=0
4relver=2 4relver=3
5version=${majver}.${minver}.${relver} 5version=${majver}.${minver}.${relver}
6abiver=5.1 6abiver=5.1
7 7
diff --git a/src/Makefile b/src/Makefile
index 72bc912a..9551781a 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -12,7 +12,7 @@
12 12
13MAJVER= 2 13MAJVER= 2
14MINVER= 0 14MINVER= 0
15RELVER= 2 15RELVER= 3
16ABIVER= 5.1 16ABIVER= 5.1
17NODOTABIVER= 51 17NODOTABIVER= 51
18 18
diff --git a/src/jit/bc.lua b/src/jit/bc.lua
index 9192cb98..9df19c7b 100644
--- a/src/jit/bc.lua
+++ b/src/jit/bc.lua
@@ -41,7 +41,7 @@
41 41
42-- Cache some library functions and objects. 42-- Cache some library functions and objects.
43local jit = require("jit") 43local jit = require("jit")
44assert(jit.version_num == 20002, "LuaJIT core/library version mismatch") 44assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
45local jutil = require("jit.util") 45local jutil = require("jit.util")
46local vmdef = require("jit.vmdef") 46local vmdef = require("jit.vmdef")
47local bit = require("bit") 47local bit = require("bit")
diff --git a/src/jit/bcsave.lua b/src/jit/bcsave.lua
index 13b79db0..f55bda97 100644
--- a/src/jit/bcsave.lua
+++ b/src/jit/bcsave.lua
@@ -11,7 +11,7 @@
11------------------------------------------------------------------------------ 11------------------------------------------------------------------------------
12 12
13local jit = require("jit") 13local jit = require("jit")
14assert(jit.version_num == 20002, "LuaJIT core/library version mismatch") 14assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
15local bit = require("bit") 15local bit = require("bit")
16 16
17-- Symbol name prefix for LuaJIT bytecode. 17-- Symbol name prefix for LuaJIT bytecode.
diff --git a/src/jit/dump.lua b/src/jit/dump.lua
index 6a77f928..556ce883 100644
--- a/src/jit/dump.lua
+++ b/src/jit/dump.lua
@@ -55,7 +55,7 @@
55 55
56-- Cache some library functions and objects. 56-- Cache some library functions and objects.
57local jit = require("jit") 57local jit = require("jit")
58assert(jit.version_num == 20002, "LuaJIT core/library version mismatch") 58assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
59local jutil = require("jit.util") 59local jutil = require("jit.util")
60local vmdef = require("jit.vmdef") 60local vmdef = require("jit.vmdef")
61local funcinfo, funcbc = jutil.funcinfo, jutil.funcbc 61local funcinfo, funcbc = jutil.funcinfo, jutil.funcbc
diff --git a/src/jit/v.lua b/src/jit/v.lua
index b9e0eb5b..197e67c6 100644
--- a/src/jit/v.lua
+++ b/src/jit/v.lua
@@ -59,7 +59,7 @@
59 59
60-- Cache some library functions and objects. 60-- Cache some library functions and objects.
61local jit = require("jit") 61local jit = require("jit")
62assert(jit.version_num == 20002, "LuaJIT core/library version mismatch") 62assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
63local jutil = require("jit.util") 63local jutil = require("jit.util")
64local vmdef = require("jit.vmdef") 64local vmdef = require("jit.vmdef")
65local funcinfo, traceinfo = jutil.funcinfo, jutil.traceinfo 65local funcinfo, traceinfo = jutil.funcinfo, jutil.traceinfo
diff --git a/src/luaconf.h b/src/luaconf.h
index 2cb4c160..affb7da8 100644
--- a/src/luaconf.h
+++ b/src/luaconf.h
@@ -37,7 +37,7 @@
37#endif 37#endif
38#define LUA_LROOT "/usr/local" 38#define LUA_LROOT "/usr/local"
39#define LUA_LUADIR "/lua/5.1/" 39#define LUA_LUADIR "/lua/5.1/"
40#define LUA_LJDIR "/luajit-2.0.2/" 40#define LUA_LJDIR "/luajit-2.0.3/"
41 41
42#ifdef LUA_ROOT 42#ifdef LUA_ROOT
43#define LUA_JROOT LUA_ROOT 43#define LUA_JROOT LUA_ROOT
diff --git a/src/luajit.h b/src/luajit.h
index 7bb93170..be721cf4 100644
--- a/src/luajit.h
+++ b/src/luajit.h
@@ -30,9 +30,9 @@
30 30
31#include "lua.h" 31#include "lua.h"
32 32
33#define LUAJIT_VERSION "LuaJIT 2.0.2" 33#define LUAJIT_VERSION "LuaJIT 2.0.3"
34#define LUAJIT_VERSION_NUM 20002 /* Version 2.0.2 = 02.00.02. */ 34#define LUAJIT_VERSION_NUM 20003 /* Version 2.0.3 = 02.00.03. */
35#define LUAJIT_VERSION_SYM luaJIT_version_2_0_2 35#define LUAJIT_VERSION_SYM luaJIT_version_2_0_3
36#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2014 Mike Pall" 36#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2014 Mike Pall"
37#define LUAJIT_URL "http://luajit.org/" 37#define LUAJIT_URL "http://luajit.org/"
38 38