6.2.0
This commit is contained in:
parent
25ad471dea
commit
e38888a75c
|
|
@ -1,11 +1,14 @@
|
||||||
# PHPMailer Change Log
|
# PHPMailer Change Log
|
||||||
|
|
||||||
## WIP
|
## Version 6.2.0
|
||||||
|
* PHP 8.0 compatibility, many thanks to @jrf_nl!
|
||||||
* Switch from PHP CS Fixer to PHP CodeSniffer for coding standards
|
* Switch from PHP CS Fixer to PHP CodeSniffer for coding standards
|
||||||
* Create class constants for the debug levels in the POP3 class
|
* Create class constants for the debug levels in the POP3 class
|
||||||
* Improve French, Slovenian, and Ukrainian translations
|
* Improve French, Slovenian, and Ukrainian translations
|
||||||
* Improve file upload examples
|
* Improve file upload examples so file extensions are retained
|
||||||
* Resolve PHP 8 line break issues due to a very old PHP bug being fixed
|
* Resolve PHP 8 line break issues due to a very old PHP bug being fixed
|
||||||
|
* Avoid warnings when using old openssl functions
|
||||||
|
* Improve Travis-CI build configuration
|
||||||
|
|
||||||
## Version 6.1.8 (October 9th, 2020)
|
## Version 6.1.8 (October 9th, 2020)
|
||||||
* Mark `ext-hash` as required in composer.json. This has long been required, but now it will cause an error at install time rather than runtime, making it easier to diagnose
|
* Mark `ext-hash` as required in composer.json. This has long been required, but now it will cause an error at install time rather than runtime, making it easier to diagnose
|
||||||
|
|
|
||||||
|
|
@ -748,7 +748,7 @@ class PHPMailer
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '6.1.8';
|
const VERSION = '6.2.0';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Error severity: message only, continue processing.
|
* Error severity: message only, continue processing.
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ class POP3
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '6.1.8';
|
const VERSION = '6.2.0';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Default POP3 port number.
|
* Default POP3 port number.
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ class SMTP
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '6.1.8';
|
const VERSION = '6.2.0';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SMTP line break constant.
|
* SMTP line break constant.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue