Skip to content

Commit fb87359

Browse files
committed
RELEASE 1.4.6 (PHP 8 compatibility).
Signed-off-by:Ivan Tcholakov <ivantcholakov@gmail.com>
1 parent 1369336 commit fb87359

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.4.6 - 29-NOV-2020
2+
-------------------
3+
4+
* Switching to PHPMailer ^6.2.0 which is also PHP 8 compatible.
5+
6+
17
1.4.5 - 25-JUN-2020
28
-------------------
39

@@ -25,6 +31,6 @@
2531
1.4.1 - 06-JUN-2020
2632
-------------------
2733

28-
* Initial Composer-managed package. Requirements: CodeIgniter 3.1.x, PHP >= 5.5.0, Composer enabled, PHP >= 6.1.6.
34+
* Initial Composer-managed package. Requirements: CodeIgniter 3.1.x, PHP >= 5.5.0, Composer enabled, PHPMailer >= 6.1.6.
2935
* For supporting CodeIgniter 2.x and CodeIgniter 3.0.x a manual installation of an older version of this
3036
library is needed, see https://github.com/ivantcholakov/codeigniter-phpmailer/tree/1.3-stable

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
A CodeIgniter compatible email-library powered by PHPMailer
77
===========================================================
88

9-
Version: 1.4.5
9+
Version: 1.4.6
1010
Author: Ivan Tcholakov <ivantcholakov@gmail.com>, 2012-2020.
1111
License: The MIT License (MIT), http://opensource.org/licenses/MIT
1212

1313
This library is compatible with CodeIgniter 3.1.x and PHP >= 5.5.0.
1414

15-
Tested on CodeIgniter 3.1.11 (September 19th, 2019) and PHPMailer Version 6.1.6 (May 27th, 2020).
15+
Tested on CodeIgniter 3.1.11 (September 19th, 2019) and PHPMailer Version 6.2.0 (November 25th, 2020).
1616

1717
Links
1818
-----

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
],
1515
"require": {
1616
"php": ">=5.5.0",
17-
"phpmailer/phpmailer": "^6.1.6"
17+
"phpmailer/phpmailer": "^6.2.0"
1818
}
1919
}

libraries/MY_Email.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
/**
44
* CodeIgniter compatible email-library powered by PHPMailer.
5-
* Version: 1.4.5
5+
* Version: 1.4.6
66
* @author Ivan Tcholakov <ivantcholakov@gmail.com>, 2012-2020.
77
* @license The MIT License (MIT), http://opensource.org/licenses/MIT
88
* @link https://github.com/ivantcholakov/codeigniter-phpmailer
99
*
1010
* Tested on CodeIgniter 3.1.11 (September 19th, 2019) and
11-
* PHPMailer Version 6.1.6 (May 27th, 2020).
11+
* PHPMailer Version 6.2.0 (November 25th, 2020).
1212
*/
1313

1414
class MY_Email extends CI_Email {

0 commit comments

Comments
 (0)