Commit 8bbcff70 by Qiang Xue

prepare for 2.0.0-beta release.

parent 9da6423a
......@@ -12,7 +12,7 @@
"irc": "irc://irc.freenode.net/yii",
"source": "https://github.com/yiisoft/yii2"
},
"minimum-stability": "dev",
"minimum-stability": "beta",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*",
......
......@@ -12,7 +12,7 @@
"irc": "irc://irc.freenode.net/yii",
"source": "https://github.com/yiisoft/yii2"
},
"minimum-stability": "dev",
"minimum-stability": "beta",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*",
......
......@@ -15,7 +15,7 @@
"config": {
"vendor-dir": "protected/vendor"
},
"minimum-stability": "dev",
"minimum-stability": "beta",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*"
......
......@@ -32,7 +32,6 @@ class ReleaseController extends Controller
{
$this->closeChangelogs($version);
$this->composerSetStability($version);
$this->composerCreateLocks();
$this->updateYiiVersion($version);
}
......@@ -107,11 +106,6 @@ class ReleaseController extends Controller
);
}
protected function composerCreateLocks()
{
$this->confirm('Run composer update for each app and commit the composer.lock file. Hit enter when done.');
}
protected function updateYiiVersion($version)
{
$this->sed(
......
Yii Framework 2 apidoc extension Change Log
===========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Initial release.
Yii Framework 2 authclient extension Change Log
===============================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Initial release.
\ No newline at end of file
......@@ -41,7 +41,6 @@ use yii\base\InvalidConfigException;
* To get a different column layout in horizontal mode you can modify those options
* through [[fieldConfig]]:
*
*
* ```php
* $form = ActiveForm::begin([
* 'layout' => 'horizontal',
......
Yii Framework 2 bootstrap extension Change Log
==============================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #2361: `yii\bootstrap\NavBar::brandUrl` should default to the home URL of application (qiangxue)
- Enh #1474: Added option to make NavBar 100% width (cebe)
......
Yii Framework 2 Codeception extension Change Log
================================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Initial release.
- Enh: yii\codeception\TestCase now supports loading and using fixtures via Yii fixture framework (qiangxue)
......
Yii Framework 2 composer extension Change Log
=============================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1480: Fixed issue with creating extensions.php when php opcache is enabled (cebe)
- Enh: Added support for installing packages conforming to PSR-4 standard (qiangxue)
......
Yii Framework 2 debug extension Change Log
==========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1783: Using VarDumper::dumpAsString() instead var_export(), because var_export() does not handle circular references. (djagya)
- Bug #1504: Debug toolbar isn't loaded successfully in some environments when xdebug is enabled (qiangxue)
......
Yii Framework 2 elasticsearch extension Change Log
==================================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1993: afterFind event in AR is now called after relations have been populated (cebe, creocoder)
- Bug #2324: Fixed QueryBuilder bug when building a query with "query" option (mintao)
......
Yii Framework 2 faker extension Change Log
==============================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Initial release.
\ No newline at end of file
Yii Framework 2 gii extension Change Log
========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1405: fixed disambiguation of relation names generated by gii (qiangxue)
- Bug #1904: Fixed autocomplete to work with underscore inputs "_" (tonydspaniard)
......
Yii Framework 2 imagine extension Change Log
================================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Initial release.
Yii Framework 2 jui extension Change Log
========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1550: fixed the issue that JUI input widgets did not property input IDs. (qiangxue)
- Bug #2514: Jui sortable clientEvents were not working because of wrong naming assumptions. (cebe)
......
Yii Framework 2 mongodb extension Change Log
============================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Initial release.
Yii Framework 2 redis extension Change Log
==========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1993: afterFind event in AR is now called after relations have been populated (cebe, creocoder)
- Enh #1773: keyPrefix property of Session and Cache is not restricted to alnum characters anymore (cebe)
......
Yii Framework 2 smarty extension Change Log
===========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- no changes in this release.
......
Yii Framework 2 sphinx extension Change Log
===========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1993: afterFind event in AR is now called after relations have been populated (cebe, creocoder)
- Bug #2160: SphinxQL does not support `OFFSET` (qiangxue, romeo7)
......
Yii Framework 2 swiftmailer extension Change Log
================================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1817: Message charset not applied for alternative bodies (klimov-paul)
......
Yii Framework 2 twig extension Change Log
=========================================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Add File based Twig loader for better caching and usability of twig's file based function (dev-mraj, samdark)
......
......@@ -92,7 +92,7 @@ class BaseYii
*/
public static function getVersion()
{
return '2.0.0-dev';
return '2.0.0-beta';
}
/**
......
Yii Framework 2 Change Log
==========================
2.0.0 beta under development
----------------------------
2.0.0-beta April 13, 2014
-------------------------
- Bug #1265: AssetController does not override 'js' and 'css' for compressed bundles (klimov-paul)
- Bug #1326: The `visible` setting for `DetailView` doesn't work as expected (qiangxue)
......
......@@ -13,8 +13,8 @@ use Yii;
* Application is the base class for all application classes.
*
* @property \yii\web\AssetManager $assetManager The asset manager component. This property is read-only.
* @property \yii\rbac\ManagerInterface $authManager The auth manager for this application. Null is returned if auth
* manager is not configured. This property is read-only.
* @property \yii\rbac\ManagerInterface $authManager The auth manager for this application. Null is returned
* if auth manager is not configured. This property is read-only.
* @property string $basePath The root directory of the application.
* @property \yii\caching\Cache $cache The cache application component. Null if the component is not enabled.
* This property is read-only.
......
......@@ -89,8 +89,7 @@ use yii\caching\Cache;
* ]
* ~~~
*
* @property string $driverName Name of the DB driver. Change this property if you want to override the
* driver name specified in [[dsn]]. This can be useful if you're working with the database via ODBC layer.
* @property string $driverName Name of the DB driver.
* @property boolean $isActive Whether the DB connection is established. This property is read-only.
* @property string $lastInsertID The row ID of the last row inserted, or the last value retrieved from the
* sequence object. This property is read-only.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment