Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit d7beb63

Browse files
committed
2.10.0 readiness
2 parents d27d631 + 336a4e8 commit d7beb63

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGELOG.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22

33
All notable changes to this project will be documented in this file, in reverse chronological order by release.
44

5-
## 2.9.1 - TBD
5+
## 2.10.0 - 2018-06-07
66

77
### Added
88

9+
- [#213](https://github.com/zendframework/zend-mail/pull/213) re-adds support for PHP 5.6 and 7.0; ZF policy is never
10+
to bump the major version of a PHP requirement unless the package is bumping major version.
11+
912
- [#172](https://github.com/zendframework/zend-mail/pull/172) adds the flag `connection_time_limit` to the possible `Zend\Mail\Transport\Smtp` options.
1013
This flag, when provided as a positive integer, and in conjunction with the `use_complete_quit` flag, will
1114
reconnect to the server after the specified interval.
@@ -19,9 +22,6 @@ All notable changes to this project will be documented in this file, in reverse
1922
The method can be used to generate an instance from a string containing a `(name)?<email>` value.
2023
The `$comment` argument can be used to associate a comment with the address.
2124

22-
- [#213](https://github.com/zendframework/zend-mail/pull/213) re-adds support for PHP 5.6 and 7.0; ZF policy is never
23-
to bump the major version of a PHP requirement unless the package is bumping major version.
24-
2525
### Changed
2626

2727
- [#196](https://github.com/zendframework/zend-mail/pull/196) updates how the `Headers::fromString()` handles header line continuations

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050
},
5151
"extra": {
5252
"branch-alias": {
53-
"dev-master": "2.9.x-dev",
54-
"dev-develop": "2.10.x-dev"
53+
"dev-master": "2.10.x-dev",
54+
"dev-develop": "2.11.x-dev"
5555
},
5656
"zf": {
5757
"component": "Zend\\Mail",

composer.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Header/ListParser.php

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99

1010
use function in_array;
1111

12+
/**
13+
* @internal
14+
*/
1215
class ListParser
1316
{
1417
const CHAR_QUOTES = ['\'', '"'];

0 commit comments

Comments
 (0)