Bump version to 5.2.11
This commit is contained in:
parent
57d3d1fee6
commit
7830cb9a76
|
|
@ -1,5 +1,6 @@
|
|||
# ChangeLog
|
||||
|
||||
## Version 5.2.11 (Aug 31st 2015)
|
||||
* Don't switch to quoted-printable for long lines if already using base64
|
||||
* Fixed Travis-CI config when run on PHP 7
|
||||
* Added Google XOAUTH2 authentication mechanism, thanks to @sherryl4george
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ class PHPMailer
|
|||
* The PHPMailer Version number.
|
||||
* @type string
|
||||
*/
|
||||
public $Version = '5.2.10';
|
||||
public $Version = '5.2.11';
|
||||
|
||||
/**
|
||||
* Email priority.
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ class POP3
|
|||
* @type string
|
||||
* @access public
|
||||
*/
|
||||
public $Version = '5.2.10';
|
||||
public $Version = '5.2.11';
|
||||
|
||||
/**
|
||||
* Default POP3 port number.
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ class SMTP
|
|||
* The PHPMailer SMTP version number.
|
||||
* @type string
|
||||
*/
|
||||
const VERSION = '5.2.10';
|
||||
const VERSION = '5.2.11';
|
||||
|
||||
/**
|
||||
* SMTP line break constant.
|
||||
|
|
@ -81,7 +81,7 @@ class SMTP
|
|||
* @deprecated Use the `VERSION` constant instead
|
||||
* @see SMTP::VERSION
|
||||
*/
|
||||
public $Version = '5.2.10';
|
||||
public $Version = '5.2.11';
|
||||
|
||||
/**
|
||||
* SMTP server port number.
|
||||
|
|
|
|||
Loading…
Reference in New Issue