Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 4.2.0 #446

Merged
merged 2 commits into from Feb 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
@@ -1,9 +1,16 @@
ChangeLog
=========

4.2.0-alpha1 (2018-09-26)
4.2.0 (2019-02-19)
------------------

* #432: DTSTAMP must be specified in UTC
* #435: ORGANIZER e-mail address are case-insensitive
* #441: Repairing BASE64 encoded vCard version 3

4.2.0-alpha1 (2018-09-26)
-------------------------

* #412: Broker: add timezone to CANCEL messages
* #424: Support php7.3

Expand Down
2 changes: 1 addition & 1 deletion lib/Parser/MimeDir.php
Expand Up @@ -233,7 +233,7 @@ protected function parseLine($line)
*
* If that was not the case, we store it here.
*
* @var null|string
* @var string|null
*/
protected $lineBuffer;

Expand Down
2 changes: 1 addition & 1 deletion lib/Property.php
Expand Up @@ -158,7 +158,7 @@ public function getParts()
* If nameless parameter is added, we try to guess its name.
*
* @param string $name
* @param string|null|array $value
* @param string|array|null $value
*/
public function add($name, $value = null)
{
Expand Down
2 changes: 1 addition & 1 deletion lib/Property/VCard/DateAndOrTime.php
Expand Up @@ -24,7 +24,7 @@ class DateAndOrTime extends Property
/**
* Field separator.
*
* @var null|string
* @var string|null
*/
public $delimiter = null;

Expand Down
2 changes: 1 addition & 1 deletion lib/Version.php
Expand Up @@ -14,5 +14,5 @@ class Version
/**
* Full version number.
*/
const VERSION = '4.1.7';
const VERSION = '4.2.0';
}