From d9e3b36b47f04b497a0164c5a20f92acb4593284 Mon Sep 17 00:00:00 2001 From: Marcus Bointon Date: Tue, 30 Sep 2025 13:54:53 +0200 Subject: [PATCH] 6.11.1 --- README.md | 2 +- VERSION | 2 +- changelog.md | 3 +++ src/PHPMailer.php | 2 +- src/POP3.php | 2 +- src/SMTP.php | 2 +- 6 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ef956372..51c97517 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ This software is distributed under the [LGPL 2.1](https://www.gnu.org/licenses/o 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.11.0" +"phpmailer/phpmailer": "^6.11.1" ``` or run diff --git a/VERSION b/VERSION index 1de66e5f..fac714a3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.11.0 +6.11.1 diff --git a/changelog.md b/changelog.md index 62d2e96f..a114cfcb 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ # PHPMailer Change Log +## Version 6.11.1 (September 30th, 2025) +* Avoid function signature problems with the deprecation of `$useimap` in `parseAddresses`. + ## Version 6.11.0 (September 29th, 2025) * Add support for [RFC4954](https://www.rfc-editor.org/rfc/rfc4954#section-4) two-part authentication for large XOAUTH2 tokens. * Also support empty tokens. diff --git a/src/PHPMailer.php b/src/PHPMailer.php index 6e83790e..0a8711f4 100644 --- a/src/PHPMailer.php +++ b/src/PHPMailer.php @@ -768,7 +768,7 @@ class PHPMailer * * @var string */ - const VERSION = '6.11.0'; + const VERSION = '6.11.1'; /** * Error severity: message only, continue processing. diff --git a/src/POP3.php b/src/POP3.php index d45b4ad7..2c2cf789 100644 --- a/src/POP3.php +++ b/src/POP3.php @@ -46,7 +46,7 @@ class POP3 * * @var string */ - const VERSION = '6.11.0'; + const VERSION = '6.11.1'; /** * Default POP3 port number. diff --git a/src/SMTP.php b/src/SMTP.php index c448a0ae..3772c94a 100644 --- a/src/SMTP.php +++ b/src/SMTP.php @@ -35,7 +35,7 @@ class SMTP * * @var string */ - const VERSION = '6.11.0'; + const VERSION = '6.11.1'; /** * SMTP line break constant.