Skip to content

Commit c19b2f7

Browse files
committed
release version 2.0.11
1 parent bd59d8f commit c19b2f7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+80
-69
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"ezyang/htmlpurifier": "~4.6",
7777
"cebe/markdown": "~1.0.0 | ~1.1.0",
7878
"bower-asset/jquery": "2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
79-
"bower-asset/jquery.inputmask": "~3.2.2",
79+
"bower-asset/jquery.inputmask": "~3.2.2 | ~3.3.3",
8080
"bower-asset/punycode": "1.3.*",
8181
"bower-asset/yii2-pjax": "~2.0.1"
8282
},

framework/BaseYii.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class BaseYii
9393
*/
9494
public static function getVersion()
9595
{
96-
return '2.0.11-dev';
96+
return '2.0.11';
9797
}
9898

9999
/**

framework/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Yii Framework 2 Change Log
22
==========================
33

4-
2.0.11 under development
4+
2.0.11 February 01, 2017
55
------------------------
66

77
- Bug #4113: Error page stacktrace was generating links to private methods which are not part of the API docs (samdark)

framework/base/Application.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
* @property string $basePath The root directory of the application.
2222
* @property \yii\caching\Cache $cache The cache application component. Null if the component is not enabled.
2323
* This property is read-only.
24+
* @property array $container Values given in terms of name-value pairs. This property is write-only.
2425
* @property \yii\db\Connection $db The database connection. This property is read-only.
2526
* @property \yii\web\ErrorHandler|\yii\console\ErrorHandler $errorHandler The error handler application
2627
* component. This property is read-only.

framework/base/Module.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@
3232
* @property string $layoutPath The root directory of layout files. Defaults to "[[viewPath]]/layouts".
3333
* @property array $modules The modules (indexed by their IDs).
3434
* @property string $uniqueId The unique ID of the module. This property is read-only.
35+
* @property string $version The version of this module. Note that the type of this property differs in getter
36+
* and setter. See [[getVersion()]] and [[setVersion()]] for details.
3537
* @property string $viewPath The root directory of view files. Defaults to "[[basePath]]/views".
36-
* @property string|callable $version The version of this module.
3738
*
3839
* @author Qiang Xue <[email protected]>
3940
* @since 2.0

framework/base/Widget.php

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Widget extends Component implements ViewContextInterface
2929
/**
3030
* @event Event an event that is triggered when the widget is initialized via [[init()]].
3131
* @since 2.0.11
32-
*/
32+
*/
3333
const EVENT_INIT = 'init';
3434
/**
3535
* @event WidgetEvent an event raised right before executing a widget.
@@ -42,7 +42,7 @@ class Widget extends Component implements ViewContextInterface
4242
* @since 2.0.11
4343
*/
4444
const EVENT_AFTER_RUN = 'afterRun';
45-
45+
4646
/**
4747
* @var int a counter used to generate [[id]] for widgets.
4848
* @internal
@@ -60,11 +60,12 @@ class Widget extends Component implements ViewContextInterface
6060
*/
6161
public static $stack = [];
6262

63+
6364
/**
6465
* Initializes the object.
6566
* This method is called at the end of the constructor.
6667
* The default implementation will trigger an [[EVENT_INIT]] event.
67-
*/
68+
*/
6869
public function init()
6970
{
7071
parent::init();
@@ -278,7 +279,7 @@ public function getViewPath()
278279
* }
279280
* ```
280281
*
281-
* @return boolean whether the widget should continue to be executed.
282+
* @return bool whether the widget should continue to be executed.
282283
* @since 2.0.11
283284
*/
284285
public function beforeRun()

framework/caching/Dependency.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* the actual dependency data.
1515
*
1616
* For more details and usage information on Cache, see the [guide article on caching](guide:caching-overview).
17-
*
17+
*
1818
* @author Qiang Xue <[email protected]>
1919
* @since 2.0
2020
*/

framework/caching/ExpressionDependency.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* please refer to the [php manual](http://www.php.net/manual/en/language.expressions.php).
1919
*
2020
* For more details and usage information on Cache, see the [guide article on caching](guide:caching-overview).
21-
*
21+
*
2222
* @author Qiang Xue <[email protected]>
2323
* @since 2.0
2424
*/

framework/caching/MemCacheServer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* of each configuration property.
1515
*
1616
* For more details and usage information on Cache, see the [guide article on caching](guide:caching-overview).
17-
*
17+
*
1818
* @author Qiang Xue <[email protected]>
1919
* @since 2.0
2020
*/

framework/caching/WinCache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* See [[Cache]] manual for common cache operations that are supported by WinCache.
1717
*
1818
* For more details and usage information on Cache, see the [guide article on caching](guide:caching-overview).
19-
*
19+
*
2020
* @author Qiang Xue <[email protected]>
2121
* @since 2.0
2222
*/

0 commit comments

Comments
 (0)