Skip to content

Commit

Permalink
6.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Synchro committed Dec 8, 2022
1 parent 28848ef commit 49cd7ea
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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!

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
6.7
6.7.1
6 changes: 6 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion src/PHPMailer.php
Expand Up @@ -750,7 +750,7 @@ class PHPMailer
*
* @var string
*/
const VERSION = '6.7';
const VERSION = '6.7.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.7';
const VERSION = '6.7.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.7';
const VERSION = '6.7.1';

/**
* SMTP line break constant.
Expand Down

0 comments on commit 49cd7ea

Please sign in to comment.