diff --git a/Examples/makensis.nsi b/Examples/makensis.nsi
index 48139e32..9fab8ecb 100644
--- a/Examples/makensis.nsi
+++ b/Examples/makensis.nsi
@@ -3,11 +3,11 @@
!define VER_MAJOR 2
!define VER_MINOR 0
-!define VER_REVISION 1
-!define VER_BUILD 19
+!define VER_REVISION 2
+!define VER_BUILD 20
-!define VER_FILE "201"
-!define VER_DISPLAY "2.01"
+!define VER_FILE "202"
+!define VER_DISPLAY "2.02"
;--------------------------------
;Compile CVS Data Setup
diff --git a/Source/makenssi.cpp b/Source/makenssi.cpp
index 99e08eef..df566c7e 100644
--- a/Source/makenssi.cpp
+++ b/Source/makenssi.cpp
@@ -1,4 +1,4 @@
-const char *NSIS_VERSION="v2.01";
+const char *NSIS_VERSION="v2.02";
/*
diff --git a/Source/script.cpp b/Source/script.cpp
index 5342bd61..ab8fb036 100644
--- a/Source/script.cpp
+++ b/Source/script.cpp
@@ -2183,7 +2183,7 @@ int CEXEBuild::doCommand(int which_token, LineParser &line)
if (k == -1) PRINTHELP()
SCRIPT_MSG("XPStyle: %s\n", line.gettoken_str(1));
init_res_editor();
- const char *szXPManifest = k ? 0 : "Nullsoft Install System v2.01";
+ const char *szXPManifest = k ? 0 : "Nullsoft Install System v2.02";
res_editor->UpdateResource(MAKEINTRESOURCE(24), MAKEINTRESOURCE(1), NSIS_DEFAULT_LANG, (unsigned char*)szXPManifest, k ? 0 : strlen(szXPManifest));
}
catch (exception& err) {