Skip to content

Commit

Permalink
6.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Synchro committed Nov 25, 2023
1 parent 3190bef commit 039de17
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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.9.0"
"phpmailer/phpmailer": "^6.9.1"
```

or run
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
6.9.0
6.9.1
3 changes: 3 additions & 0 deletions changelog.md
@@ -1,5 +1,8 @@
# PHPMailer Change Log

## Version 6.9.1 (November 25th, 2023)
* Finalise SendOauth2 example

## Version 6.9.0 (November 23rd, 2023)
* Add support for official release of PHP 8.3, add experimental support for PHP 8.4
* Add `clearCustomHeader` and `replaceCustomHeader` methods
Expand Down
2 changes: 1 addition & 1 deletion src/PHPMailer.php
Expand Up @@ -757,7 +757,7 @@ class PHPMailer
*
* @var string
*/
const VERSION = '6.9.0';
const VERSION = '6.9.1';

/**
* Error severity: message only, continue processing.
Expand Down
2 changes: 1 addition & 1 deletion src/POP3.php
Expand Up @@ -46,7 +46,7 @@ class POP3
*
* @var string
*/
const VERSION = '6.9.0';
const VERSION = '6.9.1';

/**
* Default POP3 port number.
Expand Down
2 changes: 1 addition & 1 deletion src/SMTP.php
Expand Up @@ -35,7 +35,7 @@ class SMTP
*
* @var string
*/
const VERSION = '6.9.0';
const VERSION = '6.9.1';

/**
* SMTP line break constant.
Expand Down

0 comments on commit 039de17

Please sign in to comment.