Skip to content

Commit 14faf6e

Browse files
committed
Merge branch '3.0' into 3.1
2 parents 6807bcc + abb55dd commit 14faf6e

File tree

3 files changed

+28
-5
lines changed

3 files changed

+28
-5
lines changed

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
ChangeLog
22
=========
33

4-
3.1.1 (????-??-??)
4+
3.1.1 (2016-01-25)
55
------------------
66

77
* #755: The brower plugin and some operations would break when scheduling and
88
delegation would both be enabled.
9+
* #757: A bunch of unittest improvements (@jakobsack).
10+
* The zip release ships with [sabre/vobject 4.0.1][vobj],
11+
[sabre/http 4.2.1][http], [sabre/event 3.0.0][evnt],
12+
[sabre/uri 1.0.1][uri] and [sabre/xml 1.3.0][xml].
913

1014

1115
3.1.0 (2016-01-06)
@@ -71,10 +75,13 @@ ChangeLog
7175
[sabre/uri 1.0.1][uri] and [sabre/xml 1.1.0][xml].
7276

7377

74-
3.0.7 (????-??-??)
78+
3.0.7 (2016-01-12)
7579
------------------
7680

7781
* #752: PHP 7 support for 3.0 branch. (@DeepDiver1975)
82+
* The zip release ships with [sabre/vobject 3.5.0][vobj],
83+
[sabre/http 4.2.1][http], [sabre/event 2.0.2][evnt],
84+
[sabre/uri 1.0.1][uri] and [sabre/xml 1.3.0][xml].
7885

7986

8087
3.0.6 (2016-01-04)
@@ -307,6 +314,14 @@ ChangeLog
307314
* #193: Fix `Sabre\DAV\FSExt\Directory::getQuotaInfo()` on windows.
308315

309316

317+
2.1.9 (2016-01-25)
318+
------------------
319+
320+
* #674: PHP7 support (@DeepDiver1975).
321+
* The zip release ships with [sabre/vobject 3.5.0][vobj],
322+
[sabre/http 3.0.5][http], and [sabre/event 2.0.2][evnt].
323+
324+
310325
2.1.8 (2016-01-04)
311326
------------------
312327

tests/bootstrap.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
$autoLoader->add('Sabre\\', __DIR__);
99
// VObject tests auto loading
1010
$autoLoader->addPsr4('Sabre\\VObject\\',__DIR__ . '/../vendor/sabre/vobject/tests/VObject');
11+
$autoLoader->addPsr4('Sabre\\Xml\\',__DIR__ . '/../vendor/sabre/xml/tests/Sabre/Xml');
1112

1213
date_default_timezone_set('UTC');
1314

tests/phpunit.xml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,22 @@
66
convertWarningsToExceptions="true"
77
strict="true"
88
>
9-
<testsuite name="sabre-vobject">
10-
<directory>../vendor/sabre/vobject/tests/VObject</directory>
11-
</testsuite>
129
<testsuite name="sabre-event">
1310
<directory>../vendor/sabre/event/tests/</directory>
1411
</testsuite>
12+
<testsuite name="sabre-uri">
13+
<directory>../vendor/sabre/uri/tests/</directory>
14+
</testsuite>
15+
<testsuite name="sabre-xml">
16+
<directory>../vendor/sabre/xml/tests/Sabre/Xml/</directory>
17+
</testsuite>
1518
<testsuite name="sabre-http">
1619
<directory>../vendor/sabre/http/tests/HTTP</directory>
1720
</testsuite>
21+
<testsuite name="sabre-vobject">
22+
<directory>../vendor/sabre/vobject/tests/VObject</directory>
23+
</testsuite>
24+
1825
<testsuite name="sabre-dav">
1926
<directory>Sabre/DAV</directory>
2027
</testsuite>

0 commit comments

Comments
 (0)