diff --git a/doc/changes.html b/doc/changes.html
index 585482a5..8158728b 100644
--- a/doc/changes.html
+++ b/doc/changes.html
@@ -53,6 +53,38 @@ Please check the
» Online Change History
to see whether newer versions are available.
+
+
+
Development Snapshot
+
+- Correctness and completeness:
+
+- Fix trace exit dispatch to function headers.
+- Fix Windows and OSX builds with LUAJIT_DISABLE_JIT.
+- Reorganize and fix placement of generated machine code on x64.
+- Fix TNEW in x64 interpreter.
+- Do not eliminate PHIs for values only referenced from side exits.
+- OS-independent canonicalization of strings for non-finite numbers.
+- Fix string.char() range check on x64.
+- Fix tostring() resolving within print().
+- Fix error handling for next().
+- Fix passing of constant arguments to external calls on x64.
+- Fix interpreter argument check for two-argument SSE math functions.
+- Fix C frame chain corruption caused by lua_cpcall().
+- Fix return from pcall() within active hook.
+
+- Structural and performance enhancements:
+
+- Replace on-trace GC frame syncing with interpreter exit.
+- Improve hash lookup specialization by not removing dead keys during GC.
+- Turn traces into true GC objects.
+- Avoid starting a GC cycle immediately after library init.
+- Add weak guards to improve dead-code elimination.
+- Speed up string interning.
+
+
+
+
LuaJIT 2.0.0-beta4 — 2010-03-28
@@ -63,12 +95,12 @@ to see whether newer versions are available.
- Fix folding of ordered comparisons with same references.
- Fix snapshot restores for multi-result bytecodes.
- Fix potential hang when recording bytecode with nested closures.
-- Fix recording of getmetatable(), tonumber() and bad argument types.
+- Fix recording of getmetatable(), tonumber() and bad argument types.
- Fix SLOAD fusion across returns to lower frames.
Structural and performance enhancements:
-- Add array bounds check elimination. -Oabc is enabled by default.
+- Add array bounds check elimination. -Oabc is enabled by default.
- More tuning for x64, e.g. smaller table objects.