Skip to content

Commit

Permalink
Merge pull request #446 from sabre-io/release/4.2.0
Browse files Browse the repository at this point in the history
Release 4.2.0
  • Loading branch information
DeepDiver1975 committed Feb 19, 2019
2 parents 8624ce5 + 7873294 commit bd50001
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
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';
}

0 comments on commit bd50001

Please sign in to comment.