diff --git a/README.md b/README.md index fc3d20e7e..3bba8262c 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ - Protects against header injection attacks - Error messages in over 50 languages! - DKIM and S/MIME signing support -- Compatible with PHP 5.5 and later, including PHP 8.1 +- Compatible with PHP 5.5 and later, including PHP 8.2 - Namespaced to prevent name clashes - Much more! @@ -47,7 +47,7 @@ This software is distributed under the [LGPL 2.1](http://www.gnu.org/licenses/lg PHPMailer is available on [Packagist](https://packagist.org/packages/phpmailer/phpmailer) (using semantic versioning), and installation via [Composer](https://getcomposer.org) is the recommended way to install PHPMailer. Just add this line to your `composer.json` file: ```json -"phpmailer/phpmailer": "^6.5" +"phpmailer/phpmailer": "^6.7.1" ``` or run diff --git a/VERSION b/VERSION index 5840475a6..1d4202426 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.7 \ No newline at end of file +6.7.1 \ No newline at end of file diff --git a/changelog.md b/changelog.md index 52cbf7005..be4c1d33c 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # PHPMailer Change Log +## Version 6.7.1 (December 8th, 2022) +* Add official support for PHP 8.2 +* Add PHP 8.3 to test suite with "experimental" status +* Add ext-openssl to composer suggest list +* Bump development dependencies + ## Version 6.7 (December 5th, 2022) * Break out boundary definitions into a method (note that boundary format has also changed slightly) * Remove MIME preamble to match popular client behaviour, may help with DKIM too diff --git a/src/PHPMailer.php b/src/PHPMailer.php index 431858aca..e14cdbf57 100644 --- a/src/PHPMailer.php +++ b/src/PHPMailer.php @@ -750,7 +750,7 @@ class PHPMailer * * @var string */ - const VERSION = '6.7'; + const VERSION = '6.7.1'; /** * Error severity: message only, continue processing. diff --git a/src/POP3.php b/src/POP3.php index 9d171944b..4ae52fb19 100644 --- a/src/POP3.php +++ b/src/POP3.php @@ -46,7 +46,7 @@ class POP3 * * @var string */ - const VERSION = '6.7'; + const VERSION = '6.7.1'; /** * Default POP3 port number. diff --git a/src/SMTP.php b/src/SMTP.php index 4d0ac0e54..95b0d0bb4 100644 --- a/src/SMTP.php +++ b/src/SMTP.php @@ -35,7 +35,7 @@ class SMTP * * @var string */ - const VERSION = '6.7'; + const VERSION = '6.7.1'; /** * SMTP line break constant.