Skip to content

Commit

Permalink
release version 2.0.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
SilverFire committed Mar 13, 2018
1 parent 4ad04be commit 4bfe5e7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion framework/BaseYii.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class BaseYii
*/
public static function getVersion()
{
return '2.0.15-dev';
return '2.0.14.2';
}

/**
Expand Down
4 changes: 2 additions & 2 deletions framework/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Yii Framework 2 Change Log
==========================

2.0.14.2 under development
------------------------
2.0.14.2 March 13, 2018
-----------------------

- Bug #15776: Fixed slow MySQL constraints retrieving (MartijnHols, berosoboy, sergeymakinen)
- Bug #15783: Regenerate CSRF token only when logging in directly (samdark)
Expand Down
4 changes: 2 additions & 2 deletions framework/db/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@
* available and `$fallbackToMaster` is false. This property is read-only.
* @property PDO $slavePdo The PDO instance for the currently active slave connection. `null` is returned if
* no slave connection is available and `$fallbackToMaster` is false. This property is read-only.
* @property Transaction $transaction The currently active transaction. Null if no active transaction. This
* property is read-only.
* @property Transaction|null $transaction The currently active transaction. Null if no active transaction.
* This property is read-only.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
Expand Down
2 changes: 2 additions & 0 deletions framework/db/QueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
*
* For more details and usage information on QueryBuilder, see the [guide article on query builders](guide:db-query-builder).
*
* @property string[] $conditionClasses Map of condition aliases to condition classes. For example: ```php
* ['LIKE' => yii\db\condition\LikeCondition::class] ``` . This property is write-only.
* @property string[] $expressionBuilders Array of builders that should be merged with the pre-defined ones in
* [[expressionBuilders]] property. This property is write-only.
*
Expand Down

0 comments on commit 4bfe5e7

Please sign in to comment.