Skip to content

Commit f475467

Browse files
committed
5.2.17 release
1 parent e423355 commit f475467

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

changelog.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# ChangeLog
22

3+
## Version 5.2.17 (December 9th 2016)
4+
* This is officially the last feature release of 5.2. Security fixes only from now on; use PHPMailer 6.0!
5+
* Added ability to extract SMTP transaction ID from successful submissions
6+
* Allow DKIM private key to be provided as a string
7+
* Provide mechanism to allow overriding of boundary and message ID creation
8+
* Improve Brazilian Portuguese, Spanish, Swedish, Romanian, and German translations
9+
* PHP 7.1 support for Travis-CI
10+
* Fix some language codes
11+
* Add security notices
12+
* Improve DKIM compatibility in older PHP versions
13+
* Improve trapping and capture of SMTP connection errors
14+
* Improve passthrough of error levels for debug output
15+
* PHPDoc cleanup
16+
317
## Version 5.2.16 (June 6th 2016)
418
* Added DKIM example
519
* Fixed empty additional_parameters problem

class.phpmailer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class PHPMailer
3131
* The PHPMailer Version number.
3232
* @var string
3333
*/
34-
public $Version = '5.2.16';
34+
public $Version = '5.2.17';
3535

3636
/**
3737
* Email priority.

class.pop3.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class POP3
3434
* @var string
3535
* @access public
3636
*/
37-
public $Version = '5.2.16';
37+
public $Version = '5.2.17';
3838

3939
/**
4040
* Default POP3 port number.

class.smtp.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class SMTP
3030
* The PHPMailer SMTP version number.
3131
* @var string
3232
*/
33-
const VERSION = '5.2.16';
33+
const VERSION = '5.2.17';
3434

3535
/**
3636
* SMTP line break constant.
@@ -81,7 +81,7 @@ class SMTP
8181
* @deprecated Use the `VERSION` constant instead
8282
* @see SMTP::VERSION
8383
*/
84-
public $Version = '5.2.16';
84+
public $Version = '5.2.17';
8585

8686
/**
8787
* SMTP server port number.

0 commit comments

Comments
 (0)