diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d2a011d7c9b..92b31a074fa0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,15 @@ ## [Unreleased](https://github.com/codeigniter4/CodeIgniter4/tree/HEAD) -[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.1.0...HEAD) +[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.1.1...HEAD) + +## [v4.1.1](https://github.com/codeigniter4/CodeIgniter4/tree/v4.1.0) (2021-02-01) + +[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.1.0...v4.1.1) + +**Fixed bugs:** + +- Fixed an issue where **.gitattributes** was preventing framework downloads ## [v4.1.0](https://github.com/codeigniter4/CodeIgniter4/tree/v4.1.0) (2021-01-31) diff --git a/system/CodeIgniter.php b/system/CodeIgniter.php index ae4b4eb12051..d3f011786d60 100644 --- a/system/CodeIgniter.php +++ b/system/CodeIgniter.php @@ -44,7 +44,7 @@ class CodeIgniter /** * The current version of CodeIgniter Framework */ - const CI_VERSION = '4.1.0'; + const CI_VERSION = '4.1.1'; /** * App startup time. diff --git a/user_guide_src/source/changelogs/index.rst b/user_guide_src/source/changelogs/index.rst index 0d571c1c7896..c632e339285b 100644 --- a/user_guide_src/source/changelogs/index.rst +++ b/user_guide_src/source/changelogs/index.rst @@ -12,6 +12,7 @@ See all the changes. .. toctree:: :titlesonly: + v4.1.2 v4.1.1 v4.1.0 v4.0.5 diff --git a/user_guide_src/source/changelogs/v4.1.1.rst b/user_guide_src/source/changelogs/v4.1.1.rst index f1ae21daf115..d3d9f0030489 100644 --- a/user_guide_src/source/changelogs/v4.1.1.rst +++ b/user_guide_src/source/changelogs/v4.1.1.rst @@ -1,6 +1,12 @@ Version 4.1.1 ==================================================== -Release Date: Not released +Release Date: February 1, 2021 **4.1.1 release of CodeIgniter4** + +Bugs Fixed: + +- Fixed an issue where **.gitattributes** was preventing framework downloads. + +Note that this fix was also applied retroactively to ``4.0.5`` on the **framework** repo. diff --git a/user_guide_src/source/changelogs/v4.1.2.rst b/user_guide_src/source/changelogs/v4.1.2.rst new file mode 100644 index 000000000000..81638a9083ef --- /dev/null +++ b/user_guide_src/source/changelogs/v4.1.2.rst @@ -0,0 +1,6 @@ +Version 4.1.2 +==================================================== + +Release Date: Not released + +**4.1.2 release of CodeIgniter4** diff --git a/user_guide_src/source/conf.py b/user_guide_src/source/conf.py index 75c5d673bd91..fdfe969df4d2 100644 --- a/user_guide_src/source/conf.py +++ b/user_guide_src/source/conf.py @@ -24,7 +24,7 @@ version = '4.1' # The full version, including alpha/beta/rc tags. -release = '4.1.0' +release = '4.1.1' # -- General configuration --------------------------------------------------- diff --git a/user_guide_src/source/installation/upgrade_410.rst b/user_guide_src/source/installation/upgrade_410.rst new file mode 100644 index 000000000000..ac8f7a2ba7a4 --- /dev/null +++ b/user_guide_src/source/installation/upgrade_410.rst @@ -0,0 +1,12 @@ +###################################### +Upgrading from 4.0.5 to 4.1.0 or 4.1.1 +###################################### + +**Legacy Autoloading** + +`Autoloader::loadLegacy()` method was originally for transition to CodeIgniter v4. Since `4.1.0`, +this support was removed and this method should not be used. + +**Model::fillPlaceholders** + +Replace any use of this method with its equivalent version from Validation instead. diff --git a/user_guide_src/source/installation/upgrading.rst b/user_guide_src/source/installation/upgrading.rst index e39f92613e18..58f862b9142a 100644 --- a/user_guide_src/source/installation/upgrading.rst +++ b/user_guide_src/source/installation/upgrading.rst @@ -8,6 +8,7 @@ upgrading from. .. toctree:: :titlesonly: + Upgrading from 4.0.5 to 4.1.0 or 4.1.1 Upgrading from 4.0.4 to 4.0.5 Upgrading from 4.0.x to 4.0.4 Upgrading from 3.x to 4.x