5.2.17 release
This commit is contained in:
parent
e423355350
commit
f475467ee3
14
changelog.md
14
changelog.md
|
|
@ -1,5 +1,19 @@
|
|||
# ChangeLog
|
||||
|
||||
## Version 5.2.17 (December 9th 2016)
|
||||
* This is officially the last feature release of 5.2. Security fixes only from now on; use PHPMailer 6.0!
|
||||
* Added ability to extract SMTP transaction ID from successful submissions
|
||||
* Allow DKIM private key to be provided as a string
|
||||
* Provide mechanism to allow overriding of boundary and message ID creation
|
||||
* Improve Brazilian Portuguese, Spanish, Swedish, Romanian, and German translations
|
||||
* PHP 7.1 support for Travis-CI
|
||||
* Fix some language codes
|
||||
* Add security notices
|
||||
* Improve DKIM compatibility in older PHP versions
|
||||
* Improve trapping and capture of SMTP connection errors
|
||||
* Improve passthrough of error levels for debug output
|
||||
* PHPDoc cleanup
|
||||
|
||||
## Version 5.2.16 (June 6th 2016)
|
||||
* Added DKIM example
|
||||
* Fixed empty additional_parameters problem
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ class PHPMailer
|
|||
* The PHPMailer Version number.
|
||||
* @var string
|
||||
*/
|
||||
public $Version = '5.2.16';
|
||||
public $Version = '5.2.17';
|
||||
|
||||
/**
|
||||
* Email priority.
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ class POP3
|
|||
* @var string
|
||||
* @access public
|
||||
*/
|
||||
public $Version = '5.2.16';
|
||||
public $Version = '5.2.17';
|
||||
|
||||
/**
|
||||
* Default POP3 port number.
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ class SMTP
|
|||
* The PHPMailer SMTP version number.
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '5.2.16';
|
||||
const VERSION = '5.2.17';
|
||||
|
||||
/**
|
||||
* SMTP line break constant.
|
||||
|
|
@ -81,7 +81,7 @@ class SMTP
|
|||
* @deprecated Use the `VERSION` constant instead
|
||||
* @see SMTP::VERSION
|
||||
*/
|
||||
public $Version = '5.2.16';
|
||||
public $Version = '5.2.17';
|
||||
|
||||
/**
|
||||
* SMTP server port number.
|
||||
|
|
|
|||
Loading…
Reference in New Issue