Prep for 4.1.1 release

This commit is contained in:
MGatner 2021-02-01 17:06:31 +00:00
parent c899a6b023
commit f53c951c3c
No known key found for this signature in database
GPG Key ID: 9CA44105713F5A12
8 changed files with 38 additions and 4 deletions

View File

@ -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)

View File

@ -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.

View File

@ -12,6 +12,7 @@ See all the changes.
.. toctree::
:titlesonly:
v4.1.2
v4.1.1
v4.1.0
v4.0.5

View File

@ -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.

View File

@ -0,0 +1,6 @@
Version 4.1.2
====================================================
Release Date: Not released
**4.1.2 release of CodeIgniter4**

View File

@ -24,7 +24,7 @@ copyright = '2019-2021 CodeIgniter Foundation'
version = '4.1'
# The full version, including alpha/beta/rc tags.
release = '4.1.0'
release = '4.1.1'
# -- General configuration ---------------------------------------------------

View File

@ -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.

View File

@ -8,6 +8,7 @@ upgrading from.
.. toctree::
:titlesonly:
Upgrading from 4.0.5 to 4.1.0 or 4.1.1 <upgrade_410>
Upgrading from 4.0.4 to 4.0.5 <upgrade_405>
Upgrading from 4.0.x to 4.0.4 <upgrade_404>
Upgrading from 3.x to 4.x <upgrade_4xx>