diff --git a/Build/Changes.txt b/Build/Changes.txt
index 24a58094b..958fea9da 100644
--- a/Build/Changes.txt
+++ b/Build/Changes.txt
@@ -33,19 +33,25 @@ UCD - (UCD)ARDET is an Encoding Detector Library
========================================================
-Current BETA/RC Version 5.21.1115.(build_#) (2021-11-15)
+Current BETA/RC Version 5.21.1117.(build_#) (2021-11-17)
========================================================
--------------------------------------------------------
NEW:
--------------------------------------------------------
[.###.#]- .
-[.###.#]- .
+[.alpha]- Add a Fortran Lexer.
+[.alpha]- LongPath Support enhancements.
--------------------------------------------------------
CHANGES:
--------------------------------------------------------
[.###.#]- .
+[.alpha]- Lexer Fortran: add extended intrinsic functions.
+[.alpha]- Some more DynStrg refactorings and LongPath handling.
+--------------------------------------------------------
+[.###.#]- .
+[1117.1]- Switch to Scintilla default idle styling mode (none).
[1115.1]- Reverting changes to F/R behavior, correction for empty pattern.
[1021.1]- On file restore, do not notify immediately, but check against stored file attributes.
[1015.1]- Remove the max win version check for undocumented DarkMode UxTheme methods.
@@ -61,6 +67,11 @@ CHANGES:
--------------------------------------------------------
CHANGES Versions in Tools or Libraries:
--------------------------------------------------------
+[.alpha]- Update Scintilla Library (SCI) version 5.1.4 (2021-11-08).
+[.alpha]- Update Lexilla Library (LEX) version 5.1.3 (2021-11-08).
+[.alpha]- Update grepWinNP3 (GRE) version 2.1.8.40 (2021-10-19).
+[.alpha]- Update Oniguruma Regex (ONI) engine version 7.0.0 (2021-10-19).
+--------------------------------------------------------
[.802.1]- Update Lexilla Library (LEX) version 5.1.2 (2021-07-26).
[.726.1]- Update Scintilla Library (SCI) version 5.1.1 (2021-07-26).
[.726.1]- Update grepWinNP3 (GRE) version 2.1.8.39 (2021-07-26).
@@ -70,6 +81,11 @@ CHANGES Versions in Tools or Libraries:
FIXES:
--------------------------------------------------------
[.###.#]- .
+[.alpha]- Heap corruption on retrieving text from combo box.
+[.alpha]- Path_ToShortPathName() for grepWinNP3 startup.
+[.alpha]- Path_StripPath().
+--------------------------------------------------------
+[.###.#]- .
[1115.1]- Don't clear occurrence markers for unchanged search pattern.
[1115.1]- Correction to VS2019 project settings.
[1115.1]- Find/Repl wildcard pattern handling.
diff --git a/Versions/day.txt b/Versions/day.txt
index 1b6d75c84..822fe6349 100644
--- a/Versions/day.txt
+++ b/Versions/day.txt
@@ -1 +1 @@
-1115
+1117
diff --git a/res/Notepad3.exe.manifest.conf b/res/Notepad3.exe.manifest.conf
index 0a67c1f4d..0f74fc2f6 100644
--- a/res/Notepad3.exe.manifest.conf
+++ b/res/Notepad3.exe.manifest.conf
@@ -3,7 +3,7 @@
Notepad3 rc
diff --git a/src/Version.h b/src/Version.h
index edbb52790..50d0439bd 100644
--- a/src/Version.h
+++ b/src/Version.h
@@ -76,7 +76,11 @@
#undef VER_CPL
#if defined(_MSC_VER)
- #if (_MSC_VER == 1929)
+ #if (_MSC_VER == 1930)
+ #if (_MSC_FULL_VER >= 193030705)
+ #define VER_CPL MS Visual C++ 2022 v17.0.(0-1)
+ #endif
+ #elif (_MSC_VER == 1929)
#if (_MSC_FULL_VER >= 192930137)
#define VER_CPL MS Visual C++ 2019 v16.11.(6-7)
#elif (_MSC_FULL_VER >= 192930136)
diff --git a/src/VersionEx.h b/src/VersionEx.h
index c256a7516..21b062f03 100644
--- a/src/VersionEx.h
+++ b/src/VersionEx.h
@@ -8,7 +8,7 @@
#define SAPPNAME "Notepad3"
#define VERSION_MAJOR 5
#define VERSION_MINOR 21
-#define VERSION_REV 1115
+#define VERSION_REV 1117
#define VERSION_BUILD 1
#define SCINTILLA_VER 511
#define LEXILLA_VER 511