diff --git a/manual/luatex-math.tex b/manual/luatex-math.tex
index b6634f840f995b71d6ee56a4b4dca90effd944ce..0b639f0dc524853aded66d25c9f9fe52a3869bac 100644
--- a/manual/luatex-math.tex
+++ b/manual/luatex-math.tex
@@ -267,7 +267,7 @@ are described as follows:
 \startitemize
 \startitem
     In any style superscripts and subscripts are taken from the next smaller style.
-    Exception: in display style they are taken in script style.
+    Exception: in display style they are in script style.
 \stopitem
 \startitem
     Subscripts are always in the cramped variant of the style; superscripts are only
@@ -407,7 +407,7 @@ needed.
 
 The injection of \type {\abovedisplayskip} and \type {\belowdisplayskip} is not
 symmetrical. An above one is always inserted, also when zero, but the below is
-only inserted when larger than zero. Especially the later mkes it sometimes hard
+only inserted when larger than zero. Especially the later makes it sometimes hard
 to fully control spacing. Therefore \LUATEX\ comes with a new directive: \type
 {\mathdisplayskipmode}. The following values apply:
 
diff --git a/manual/luatex.pdf b/manual/luatex.pdf
index 9fa91f4fc30a0cf2962f9d2eaee9e66eb19b1986..7cd0fa37da208395bdbdd4a5c324fe7a69c0456d 100644
Binary files a/manual/luatex.pdf and b/manual/luatex.pdf differ
diff --git a/manual/luatex.tex b/manual/luatex.tex
index 74b2a60c8fa2ca43053421f23f0e95e4d5086874..f571515ae0b43635d4c0551bef9919eccc98bcc0 100644
--- a/manual/luatex.tex
+++ b/manual/luatex.tex
@@ -12,8 +12,8 @@
 \dontcomplain
 
 \startdocument
-  [version=0.99,
-   status=pre-release]
+  [%status=release,
+   version=1.0.0]
 
 \component luatex-titlepage
 
diff --git a/source/texk/web2c/luatexdir/luatex.c b/source/texk/web2c/luatexdir/luatex.c
index d2cf856d4684f4da08c236c45941598a6e16509a..d2e9c2e069b17a628106a64f4d4831590b240450 100644
--- a/source/texk/web2c/luatexdir/luatex.c
+++ b/source/texk/web2c/luatexdir/luatex.c
@@ -28,10 +28,10 @@
 
 #define TeX
 
-int luatex_version = 99;        /* \.{\\luatexversion}  */
-int luatex_revision = '5';      /* \.{\\luatexrevision}  */
-int luatex_date_info = 2016092300;     /* the compile date is now hardwired */
-const char *luatex_version_string = "0.99.5";
+int luatex_version = 100;        /* \.{\\luatexversion}  */
+int luatex_revision = '0';      /* \.{\\luatexrevision}  */
+int luatex_date_info = 2016092700;     /* the compile date is now hardwired */
+const char *luatex_version_string = "1.0";
 const char *engine_name = my_name;     /* the name of this engine */
 
 #include <kpathsea/c-ctype.h>