diff --git a/doc/changes.html b/doc/changes.html
index 88d54cc2..29124c5f 100644
--- a/doc/changes.html
+++ b/doc/changes.html
@@ -69,6 +69,51 @@ to see whether newer versions are available.
+
LuaJIT 2.0.0-beta6 — 2011-02-11
+
+- New features:
+
+- PowerPC/e500v2 port of the LuaJIT interpreter is complete.
+- Various minor features from Lua 5.2: Hex escapes in literals,
+'\*' escape, reversible string.format("%q",s),
+"%g" pattern, table.sort checks callbacks,
+os.exit(status|true|false[,close]).
+- Lua 5.2 __pairs and __ipairs metamethods
+(disabled by default).
+- Initial release of the FFI library.
+
+- Correctness and completeness:
+
+- Fix string.format() for non-finite numbers.
+- Fix memory leak when compiled to use the built-in allocator.
+- x86/x64: Fix unnecessary resize in TSETM bytecode.
+- Fix various GC issues with traces and jit.flush().
+- x64: Fix fusion of indexes for array references.
+- x86/x64: Fix stack overflow handling for coroutine results.
+- Enable low-2GB memory allocation on FreeBSD/x64.
+- Fix collectgarbage("count") result if more than 2GB is in use.
+- Fix parsing of hex floats.
+- x86/x64: Fix loop branch inversion with trailing
+HREF+NE/EQ.
+- Add jit.os string.
+- coroutine.create() permits running C functions, too.
+- Fix OSX build to work with newer ld64 versions.
+- Fix bytecode optimization of and/or operators.
+
+- Structural and performance enhancements:
+
+- Emit specialized bytecode for pairs()/next().
+- Improve bytecode coalescing of nil constants.
+- Compile calls to vararg functions.
+- Compile select().
+- Improve alias analysis, esp. for loads from allocations.
+- Tuning of various compiler heuristics.
+- Refactor and extend IR conversion instructions.
+- x86/x64: Various backend enhancements related to the FFI.
+- Add SPLIT pass to split 64 bit IR instructions for 32 bit CPUs.
+
+
+
LuaJIT 2.0.0-beta5 — 2010-08-24
- Correctness and completeness: