diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e0408ca..45247f42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ Thank you all Antonio Ramirez. ## YiiBooster latest development alpha + + +## YiiBooster version 2.1.0 - **(fix)** Fix "Maximum call stack size exceeded" inside `TbExtendedGridView` class #430 (fromYukki) - **(fix)** Fix attributes on `td` after update in classes `TbJsonButtonColumn` and `TbJsonCheckBoxColumn` #350 (fromYukki) - **(enh)** New attributes `readonly` and `disabled` for `TbSelect2` class #305 (fromYukki) diff --git a/README.md b/README.md index a4af0881..8041d900 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ YiiBooster **This is the master branch, containing work in progress on the next release. Do not think that it's a production ready version which you can safely clone into your project. -If you want the latest point release, check out the `2.0.0` branch** +If you want the latest point release, check out the `2.1.0` branch** --- @@ -59,8 +59,6 @@ If you find any bugs, please create an issue at [issue tracker for project Githu ## License This work as a whole is licensed under a BSD license. Full text is included in the `LICENSE` file in the root of codebase. -> [![Clevertech](http://clevertech.biz/images/slir/w54-h36-c54:36/images/site/index/home/clevertech-logo.png)](http://www.clevertech.biz) -> > Well-built beautifully designed web applications. > > [www.clevertech.biz](http://www.clevertech.biz) diff --git a/src/components/Bootstrap.php b/src/components/Bootstrap.php index b95388c0..ffff1a0c 100644 --- a/src/components/Bootstrap.php +++ b/src/components/Bootstrap.php @@ -14,6 +14,10 @@ * Maintenance * @author Mark Safronov * @version 2.0.0 + * + * Maintenance + * @author Maksim Naumov + * @version 2.1.0 */ /** @@ -341,7 +345,7 @@ protected function registerJsPackagesIfEnabled() */ public function getVersion() { - return '2.0.0'; + return '2.1.0'; } /** @@ -431,6 +435,7 @@ protected function setAssetsRegistryIfNotDefined() /** * @param CEvent $event + * @since 2.1.0 */ public function resolveUiConflict($event = null) { @@ -966,6 +971,7 @@ protected function tryGetInfoForPlugin($name, $key) /** * @param Bootstrap $value + * @since 2.1.0 */ public static function setBooster($value) { @@ -976,6 +982,7 @@ public static function setBooster($value) /** * @return Bootstrap + * @since 2.1.0 */ public static function getBooster() { diff --git a/src/components/BootstrapClientScript.php b/src/components/BootstrapClientScript.php index 66491f0b..b498473e 100644 --- a/src/components/BootstrapClientScript.php +++ b/src/components/BootstrapClientScript.php @@ -1,5 +1,8 @@