Skip to content

Commit

Permalink
5.2.9 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Synchro committed Sep 25, 2014
1 parent 7c61be9 commit b56c9b6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion changelog.md
@@ -1,5 +1,6 @@
# ChangeLog

## Version 5.2.9 (Sept 25th 2014)
* **Important: The autoloader is no longer autoloaded by the PHPMailer class**
* Update html2text from https://github.com/mtibben/html2text
* Improve Arabic translations (Thanks to @tarekdj)
Expand All @@ -22,7 +23,7 @@
* Add SMTP connection check example
* Simplify examples, don't use mysql* functions

## Version 5.2.8 (May 14th 2014)
## Version 5.2.9 (May 14th 2014)
* Increase timeout to match RFC2821 section 4.5.3.2 and thus not fail greetdelays, fixes #104
* Add timestamps to default debug output
* Add connection events and new level 3 to debug output options
Expand Down
2 changes: 1 addition & 1 deletion class.phpmailer.php
Expand Up @@ -31,7 +31,7 @@ class PHPMailer
* The PHPMailer Version number.
* @type string
*/
public $Version = '5.2.8';
public $Version = '5.2.9';

/**
* Email priority.
Expand Down
2 changes: 1 addition & 1 deletion class.pop3.php
Expand Up @@ -34,7 +34,7 @@ class POP3
* @type string
* @access public
*/
public $Version = '5.2.8';
public $Version = '5.2.9';

/**
* Default POP3 port number.
Expand Down
4 changes: 2 additions & 2 deletions class.smtp.php
Expand Up @@ -30,7 +30,7 @@ class SMTP
* The PHPMailer SMTP version number.
* @type string
*/
const VERSION = '5.2.8';
const VERSION = '5.2.9';

/**
* SMTP line break constant.
Expand Down Expand Up @@ -81,7 +81,7 @@ class SMTP
* @deprecated Use the `VERSION` constant instead
* @see SMTP::VERSION
*/
public $Version = '5.2.8';
public $Version = '5.2.9';

/**
* SMTP server port number.
Expand Down

0 comments on commit b56c9b6

Please sign in to comment.