This commit is contained in:
Marcus Bointon 2017-09-14 14:50:11 +02:00
parent 1bc0d46017
commit 617df94ffb
No known key found for this signature in database
GPG Key ID: DE31CD6EB646AA24
5 changed files with 16 additions and 5 deletions

View File

@ -1 +1 @@
6.0.0
6.0.1

View File

@ -1,6 +1,17 @@
# 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.
* **Requires PHP 5.5 or later**

View File

@ -669,7 +669,7 @@ class PHPMailer
*
* @var string
*/
const VERSION = '6.0.0';
const VERSION = '6.0.1';
/**
* Error severity: message only, continue processing.

View File

@ -45,7 +45,7 @@ class POP3
*
* @var string
*/
const VERSION = '6.0.0';
const VERSION = '6.0.1';
/**
* Default POP3 port number.

View File

@ -34,7 +34,7 @@ class SMTP
*
* @var string
*/
const VERSION = '6.0.0';
const VERSION = '6.0.1';
/**
* SMTP line break constant.