Skip to content

Commit 93a942f

Browse files
authored
Merge pull request #4201 from codeigniter4/release-4.1.0
Prep for 4.1.0 release
2 parents 149c879 + f90c045 commit 93a942f

File tree

5 files changed

+26
-5
lines changed

5 files changed

+26
-5
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,18 @@
22

33
## [Unreleased](https://github.com/codeigniter4/CodeIgniter4/tree/HEAD)
44

5-
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.0.5...HEAD)
5+
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.1.0...HEAD)
6+
7+
## [v4.1.0](https://github.com/codeigniter4/CodeIgniter4/tree/v4.1.0) (2021-01-31)
8+
9+
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.0.5...v4.1.0)
10+
11+
**Implemented enhancements:**
12+
13+
- Rector 0.9 fixes [\#4196](https://github.com/codeigniter4/CodeIgniter4/issues/#4196)
14+
- Cannot declare class Config\App error on running PHPUnit [\#4114](https://github.com/codeigniter4/CodeIgniter4/issues/4114)
15+
- Backfill non-optional parameters (https://github.com/codeigniter4/CodeIgniter4/pull/3938)
16+
- Change deprecated assertFileNotExists (https://github.com/codeigniter4/CodeIgniter4/pull/3862)
617

718
## [v4.0.5](https://github.com/codeigniter4/CodeIgniter4/tree/v4.0.5) (2021-01-31)
819

system/CodeIgniter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class CodeIgniter
4444
/**
4545
* The current version of CodeIgniter Framework
4646
*/
47-
const CI_VERSION = '4.0.5';
47+
const CI_VERSION = '4.1.0';
4848

4949
/**
5050
* App startup time.

user_guide_src/source/changelogs/v4.1.0.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
Version 4.1.0
22
====================================================
33

4-
Release Date: Not released
4+
Release Date: January 31, 2021
55

66
**4.1.0 release of CodeIgniter4**
77

8+
Changes:
9+
10+
- Dropped support for PHP 7.2
11+
812
Removed:
913

1014
- `Autoloader::loadLegacy()` method was previously used for migration of non-namespaced classes in transition to CodeIgniter v4. Since `4.1.0`, this support was removed.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Version 4.1.1
2+
====================================================
3+
4+
Release Date: Not released
5+
6+
**4.1.1 release of CodeIgniter4**

user_guide_src/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
copyright = '2019-2021 CodeIgniter Foundation'
2222

2323
# The short X.Y version.
24-
version = '4.0'
24+
version = '4.1'
2525

2626
# The full version, including alpha/beta/rc tags.
27-
release = '4.0.5'
27+
release = '4.1.0'
2828

2929
# -- General configuration ---------------------------------------------------
3030

0 commit comments

Comments
 (0)