diff --git a/doc/changes.html b/doc/changes.html
index 72f7ff5e..cb6feedc 100644
--- a/doc/changes.html
+++ b/doc/changes.html
@@ -60,7 +60,7 @@ div.major { max-width: 600px; padding: 1em; margin: 1em 0 1em 0; }
This is a list of changes between the released versions of LuaJIT.
The current development version is LuaJIT 2.0.0-beta6.
-The current stable version is LuaJIT 1.1.6.
+The current stable version is LuaJIT 1.1.7.
Please check the
@@ -69,6 +69,48 @@ to see whether newer versions are available.
+
LuaJIT 2.0.0-beta7 — 2011-05-05
+
+- New features:
+
+- ARM port of the LuaJIT interpreter is complete.
+- FFI library: Add ffi.gc(), ffi.metatype(),
+ffi.istype().
+- FFI library: Resolve ld script redirection in ffi.load().
+- From Lua 5.2: package.searchpath(), fp:read("*L"),
+load(string).
+- From Lua 5.2, disabled by default: empty statement,
+table.unpack(), modified coroutine.running().
+
+- Correctness and completeness:
+
+- FFI library: numerous fixes.
+- Fix type mismatches in store-to-load forwarding.
+- Fix error handling within metamethods.
+- Fix table.maxn().
+- Improve accuracy of x^-k on x64.
+- Fix code generation for Intel Atom in x64 mode.
+- Fix narrowing of POW.
+- Fix recording of retried fast functions.
+- Fix code generation for bit.bnot() and multiplies.
+- Fix error location within cpcall frames.
+- Add workaround for old libgcc unwind bug.
+- Fix lua_yield() and getmetatable(lightuserdata) on x64.
+- Misc. fixes for PPC/e500 interpreter.
+- Fix stack slot updates for down-recursion.
+
+- Structural and performance enhancements:
+
+- Add dual-number mode (int/double) for the VM. Enabled for ARM.
+- Improve narrowing of arithmetic operators and for loops.
+- Tune loop unrolling heuristics and increase trace recorder limits.
+- Eliminate dead slots in snapshots using bytecode data-flow analysis.
+- Avoid phantom stores to proxy tables.
+- Optimize lookups in empty proxy tables.
+- Improve bytecode optimization of and/or operators.
+
+
+
LuaJIT 2.0.0-beta6 — 2011-02-11
- New features:
@@ -249,6 +291,12 @@ no point in listing differences over earlier versions.
+
LuaJIT 1.1.7 — 2011-05-05
+
+
LuaJIT 1.1.6 — 2010-03-28