diff --git a/documentation/changelog.html b/documentation/changelog.html
index 03e53732b3..d5340526d4 100644
--- a/documentation/changelog.html
+++ b/documentation/changelog.html
@@ -44,6 +44,25 @@
Note: most #wxyz references are issue numbers you can find in our public bug tracking system
+Chamilo 1.9.4 - , 15th of November, 2012
+Release notes - summary
+Chamilo 1.9.4 is a minor stable version with a series of improvements on top of 1.9.2.
+
+Release name
+
+New Features
+
+Improvements
+
+Debugging
+
+
Chamilo 1.9.2 - Hanga Roa, 27th of September, 2012
Release notes - summary
diff --git a/main/install/index.php b/main/install/index.php
index 71c0b6f47c..4685f63419 100644
--- a/main/install/index.php
+++ b/main/install/index.php
@@ -110,7 +110,7 @@ error_reporting(E_ALL);
// Upgrading from any subversion of 1.6 is just like upgrading from 1.6.5
$update_from_version_6 = array('1.6', '1.6.1', '1.6.2', '1.6.3', '1.6.4', '1.6.5');
// Upgrading from any subversion of 1.8 avoids the additional step of upgrading from 1.6
-$update_from_version_8 = array('1.8', '1.8.2', '1.8.3', '1.8.4', '1.8.5', '1.8.6', '1.8.6.1', '1.8.6.2','1.8.7','1.8.7.1','1.8.8','1.8.8.2', '1.8.8.4', '1.8.8.6', '1.9.0');
+$update_from_version_8 = array('1.8', '1.8.2', '1.8.3', '1.8.4', '1.8.5', '1.8.6', '1.8.6.1', '1.8.6.2','1.8.7','1.8.7.1','1.8.8','1.8.8.2', '1.8.8.4', '1.8.8.6', '1.9.0', '1.9.2');
$my_old_version = '';
$tmp_version = get_config_param('dokeos_version');
diff --git a/main/install/version.php b/main/install/version.php
index 0f16eac241..e612d688c9 100644
--- a/main/install/version.php
+++ b/main/install/version.php
@@ -11,10 +11,10 @@
/**
* Variables used from the main/install/index.php
*/
-$new_version = '1.9.2';
-$new_version_status = 'Stable';
-$new_version_last_id = 2;
-$new_version_stable = true;
+$new_version = '1.9.4';
+$new_version_status = 'Unstable';
+$new_version_last_id = 1;
+$new_version_stable = false;
$new_version_major = false;
$software_name = 'Chamilo';
$software_url = 'http://www.chamilo.org/';