diff --git a/apps/advanced/README.md b/apps/advanced/README.md
index 3a042ce..520c83a 100644
--- a/apps/advanced/README.md
+++ b/apps/advanced/README.md
@@ -73,20 +73,6 @@ You can then install the application using the following command:
 php composer.phar create-project --stability=alpha yiisoft/yii2-app-advanced advanced
 ~~~
 
-After the application is installed, switch to the project folder and run the following command
-to initialize the application:
-
-~~~
-./init         (or "init" on Windows)
-~~~
-
-You can then access the application through the following URLs,
-
-~~~
-http://localhost/advanced/frontend/web/
-http://localhost/advanced/backend/web/
-~~~
-
 
 GETTING STARTED
 ---------------
diff --git a/framework/CHANGELOG.md b/framework/CHANGELOG.md
index 9fe5c8d..c460706 100644
--- a/framework/CHANGELOG.md
+++ b/framework/CHANGELOG.md
@@ -1,7 +1,11 @@
 Yii Framework 2 Change Log
 ==========================
 
-Version 2.0 alpha
------------------
+2.0.0 beta under development
+----------------------------
+
+
+2.0.0 alpha, December 1, 2013
+---------------------------
 
 - Initial release.
diff --git a/framework/yii/BaseYii.php b/framework/yii/BaseYii.php
index e56d410..9343764 100644
--- a/framework/yii/BaseYii.php
+++ b/framework/yii/BaseYii.php
@@ -104,7 +104,7 @@ class BaseYii
 	 */
 	public static function getVersion()
 	{
-		return '2.0-dev';
+		return '2.0.0-dev';
 	}
 
 	/**