Skip to content

Commit

Permalink
RELEASE 1.4.6 (PHP 8 compatibility).
Browse files Browse the repository at this point in the history
Signed-off-by:Ivan Tcholakov <ivantcholakov@gmail.com>
  • Loading branch information
ivantcholakov committed Nov 29, 2020
1 parent 1369336 commit fb87359
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.4.6 - 29-NOV-2020
-------------------

* Switching to PHPMailer ^6.2.0 which is also PHP 8 compatible.


1.4.5 - 25-JUN-2020
-------------------

Expand Down Expand Up @@ -25,6 +31,6 @@
1.4.1 - 06-JUN-2020
-------------------

* Initial Composer-managed package. Requirements: CodeIgniter 3.1.x, PHP >= 5.5.0, Composer enabled, PHP >= 6.1.6.
* Initial Composer-managed package. Requirements: CodeIgniter 3.1.x, PHP >= 5.5.0, Composer enabled, PHPMailer >= 6.1.6.
* For supporting CodeIgniter 2.x and CodeIgniter 3.0.x a manual installation of an older version of this
library is needed, see https://github.com/ivantcholakov/codeigniter-phpmailer/tree/1.3-stable
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
A CodeIgniter compatible email-library powered by PHPMailer
===========================================================

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

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

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

Links
-----
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
],
"require": {
"php": ">=5.5.0",
"phpmailer/phpmailer": "^6.1.6"
"phpmailer/phpmailer": "^6.2.0"
}
}
4 changes: 2 additions & 2 deletions libraries/MY_Email.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

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

class MY_Email extends CI_Email {
Expand Down

0 comments on commit fb87359

Please sign in to comment.