diff --git a/WHATSNEW.md b/WHATSNEW.md
index 63abe0a617c3c5c558eda6c26dbc78c2d3dfebde..8cac25f814492d4a1790a948bbf959165d536223 100644
--- a/WHATSNEW.md
+++ b/WHATSNEW.md
@@ -1,3 +1,8 @@
+New stuff in 1.7-rc2
+====================
+  * Bug fixes from rc1
+  * Nested help topics support
+
 New stuff in 1.7-rc1
 ====================
   * Upgrade support for osTicket 1.6-rc1 and later
diff --git a/main.inc.php b/main.inc.php
index f668cdf4427c70b641f3d9c85f0d9a4646ae3aa8..abcbfeabdaee005bdd83abb7719ac163e0e531af 100644
--- a/main.inc.php
+++ b/main.inc.php
@@ -62,7 +62,7 @@
     /*############## Do NOT monkey with anything else beyond this point UNLESS you really know what you are doing ##############*/
 
     #Current version && schema signature (Changes from version to version)
-    define('THIS_VERSION','1.7-RC1'); //Shown on admin panel
+    define('THIS_VERSION','1.7-RC2'); //Shown on admin panel
     define('SCHEMA_SIGNATURE','d0e37dca324648f1ce2d10528a6026d4'); //MD5 signature of the db schema. (used to trigger upgrades)
 
     #load config info
diff --git a/setup/setup.inc.php b/setup/setup.inc.php
index d6f54ca268c784e471dc756d228ff888763d4730..07b86c6ffa43e13338f3b1f6c176e0cee2f53316 100644
--- a/setup/setup.inc.php
+++ b/setup/setup.inc.php
@@ -15,7 +15,7 @@
 **********************************************************************/
 
 #This  version - changed on every release
-define('THIS_VERSION', '1.7-RC1');
+define('THIS_VERSION', '1.7-RC2');
 
 #inits
 error_reporting(E_ALL ^ E_NOTICE); //turn on errors??