6.0.1
This commit is contained in:
parent
1bc0d46017
commit
617df94ffb
13
changelog.md
13
changelog.md
|
|
@ -1,6 +1,17 @@
|
||||||
# PHPMailer Change Log
|
# PHPMailer Change Log
|
||||||
|
|
||||||
## Version 6.0
|
## Version 6.0.1 (September 14th 2017)
|
||||||
|
* Use shorter Message-ID headers (with more entropy) to avoid iCloud blackhole bug
|
||||||
|
* Switch to Symfony code style (though it's not well defined)
|
||||||
|
* CI builds now apply syntax & code style checks, so make your PRs tidy!
|
||||||
|
* CI code coverage only applied on latest version of PHP to speed up builds (thanks to @Slamdunk for these CI changes)
|
||||||
|
* Remove `composer.lock` - it's important that libraries break early; keeping it is for apps
|
||||||
|
* Rename test scripts to PSR-4 spec
|
||||||
|
* Make content-id values settable on attachments, not just embedded items
|
||||||
|
* Add SMTP transaction IDs to callbacks & allow for future expansion
|
||||||
|
* Expand test coverage
|
||||||
|
|
||||||
|
## Version 6.0 (August 28th 2017)
|
||||||
This is a major update that breaks backwards compatibility.
|
This is a major update that breaks backwards compatibility.
|
||||||
|
|
||||||
* **Requires PHP 5.5 or later**
|
* **Requires PHP 5.5 or later**
|
||||||
|
|
|
||||||
|
|
@ -669,7 +669,7 @@ class PHPMailer
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '6.0.0';
|
const VERSION = '6.0.1';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Error severity: message only, continue processing.
|
* Error severity: message only, continue processing.
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ class POP3
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '6.0.0';
|
const VERSION = '6.0.1';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Default POP3 port number.
|
* Default POP3 port number.
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ class SMTP
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '6.0.0';
|
const VERSION = '6.0.1';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SMTP line break constant.
|
* SMTP line break constant.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue