diff --git a/ChangeLog b/ChangeLog
index dd665b7c3..5c07db644 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,35 +1,51 @@
 # for this file format description,
 # see https://github.com/olivierlacan/keep-a-changelog
 
+## [24.6.0.603] - 2024-06-20
+
+### Changes
+
+ - Upgrade dependencies: OpenSSL 3.2.2
+
+### Fixes
+
+Thanks to ssvine https://github.com/ssvine
+ * gh-484 Fix writing code page to database
+ * gh-483 Fix unexpected session closure when clicking Abort
+ * gh-482 Fix FTP codepage support
+
+
 ## [24.5.0.602] - 2024-05-05
 
 ### Changes
-* gh-467 Update PuTTY to 0.81
-* gh-461 Tell AppVeyour to keep build artifacts
+
+ * gh-467 Update PuTTY to 0.81
+ * gh-461 Tell AppVeyour to keep build artifacts
 
 ### Fixes
 
 Thanks to ssvine https://github.com/ssvine
-* gh-469 Fix log time format
-* gh-468 Fix MFC termination
-* gh-466 Fix Charset encoding for filenames
-* gh-465 Fix dialog message
-* gh-463 Fix freeze on exit
-* gh-462 Fix possible crashes on lost connections while modal dialog is shown
-* gh-459 Fix ssh crash on reconnect
-* gh-458 Fix broken terminal output
-* gh-457 Fix properties implementation
+ * gh-469 Fix log time format
+ * gh-468 Fix MFC termination
+ * gh-466 Fix Charset encoding for filenames
+ * gh-465 Fix dialog message
+ * gh-463 Fix freeze on exit
+ * gh-462 Fix possible crashes on lost connections while modal dialog is shown
+ * gh-459 Fix ssh crash on reconnect
+ * gh-458 Fix broken terminal output
+ * gh-457 Fix properties implementation
+
 
 ## [24.4.1.601] - 2024-04-10
 
 ### Fixes
 
 Thanks to ssvine https://github.com/ssvine
-* gh-455 Fix webdav prefix
-* gh-454 Fix WebDAV preserve time
-* gh-453 Fix hotkey problems
-* gh-452 Fix editor not taking transfer settings into account
-* gh-451 Fix openssl compilation flags to prevent DLL pinning
+ * gh-455 Fix webdav prefix
+ * gh-454 Fix WebDAV preserve time
+ * gh-453 Fix hotkey problems
+ * gh-452 Fix editor not taking transfer settings into account
+ * gh-451 Fix openssl compilation flags to prevent DLL pinning
 
 
 ## [24.4.0.600] - 2024-04-03
@@ -40,14 +56,14 @@ Thanks to ssvine https://github.com/ssvine
 https://github.com/FarGroup/FarManager/issues/816
 
 Thanks to ssvine https://github.com/ssvine
-* gh-449 Fix SFTP crash when resuming copy from local to remote
-* gh-447 Fix crash when trying to copy parent directory entry
-* gh-446 Fix Alt-F12 history navigation
-* gh-445 Relax file naming restrictions
-* gh-444 Fix regression: closing FTP does not completely clear the session
-* gh-443 Several crashes
-* gh-442 Fix several crashes
-* gh-441 Fix WebDAV and S3 crash under some conditions
+ * gh-449 Fix SFTP crash when resuming copy from local to remote
+ * gh-447 Fix crash when trying to copy parent directory entry
+ * gh-446 Fix Alt-F12 history navigation
+ * gh-445 Relax file naming restrictions
+ * gh-444 Fix regression: closing FTP does not completely clear the session
+ * gh-443 Several crashes
+ * gh-442 Fix several crashes
+ * gh-441 Fix WebDAV and S3 crash under some conditions
 
 
 ## [24.3.1.599] - 2024-03-22
diff --git a/src/NetBox/NetBox.rc b/src/NetBox/NetBox.rc
index 65f8d8a18..b8a4764d8 100644
--- a/src/NetBox/NetBox.rc
+++ b/src/NetBox/NetBox.rc
@@ -12,13 +12,13 @@ FILETYPE 0x2
         {
             VALUE "CompanyName", "Mikhail Lukashov\0"
             VALUE "FileDescription", "NetBox: SFTP/FTP/FTPS/SCP/WebDAV/S3 client for Far Manager 3.0\0"
-            VALUE "FileVersion", "24.5.0.602\0"
+            VALUE "FileVersion", "24.6.0.603\0"
             VALUE "InternalName", "FarNetBox\0"
             VALUE "LegalCopyright", "(c) 2011, 2024 Mikhail Lukashov\0"
             VALUE "LegalTrademarks", "\0"
             VALUE "OriginalFilename", "NetBox.dll\0"
             VALUE "ProductName", "NetBox\0"
-            VALUE "ProductVersion", "24.5.0.602\0"
+            VALUE "ProductVersion", "24.6.0.603\0"
             VALUE "ReleaseType", "beta\0"
             VALUE "WWW", "https://github.com/michaellukashov/Far-NetBox\0"
         }
diff --git a/src/NetBox/plugin_version.hpp b/src/NetBox/plugin_version.hpp
index 294567778..54be5bfea 100644
--- a/src/NetBox/plugin_version.hpp
+++ b/src/NetBox/plugin_version.hpp
@@ -5,6 +5,6 @@
 #pragma once
 
 #define NETBOX_VERSION_MAJOR         24
-#define NETBOX_VERSION_MINOR         5
+#define NETBOX_VERSION_MINOR         6
 #define NETBOX_VERSION_PATCH         0
-#define NETBOX_VERSION_BUILD         602
+#define NETBOX_VERSION_BUILD         603