Skip to content

Commit 02947fe

Browse files
committed
Fixed includes file, and marked this as beta4.
1 parent 1dccfbc commit 02947fe

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
3.0.0-beta4 (2013-06-21)
2+
* Fixed: includes.php was no longer up to date.
3+
14
3.0.0-beta3 (2013-06-17)
25
* Added: OPTION_FORGIVING now also allows slashes in property names.
36
* Fixed: DateTimeParser no longer fails on dates with years < 1000

lib/Sabre/VObject/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ class Version {
1414
/**
1515
* Full version number
1616
*/
17-
const VERSION = '3.0.0-beta3';
17+
const VERSION = '3.0.0-beta4';
1818

1919
}

lib/Sabre/VObject/includes.php

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,27 +33,28 @@
3333
include __DIR__ . '/Parser/MimeDir.php';
3434
include __DIR__ . '/Property/Binary.php';
3535
include __DIR__ . '/Property/Boolean.php';
36-
include __DIR__ . '/Property/DateTime.php';
37-
include __DIR__ . '/Property/Duration.php';
3836
include __DIR__ . '/Property/Float.php';
37+
include __DIR__ . '/Property/ICalendar/Duration.php';
38+
include __DIR__ . '/Property/ICalendar/Period.php';
39+
include __DIR__ . '/Property/ICalendar/Recur.php';
3940
include __DIR__ . '/Property/Integer.php';
40-
include __DIR__ . '/Property/LanguageTag.php';
41-
include __DIR__ . '/Property/Period.php';
42-
include __DIR__ . '/Property/Recur.php';
4341
include __DIR__ . '/Property/Text.php';
4442
include __DIR__ . '/Property/Time.php';
45-
include __DIR__ . '/Property/TimeStamp.php';
4643
include __DIR__ . '/Property/Unknown.php';
4744
include __DIR__ . '/Property/Uri.php';
4845
include __DIR__ . '/Property/UtcOffset.php';
46+
include __DIR__ . '/Property/VCard/DateAndOrTime.php';
47+
include __DIR__ . '/Property/VCard/LanguageTag.php';
48+
include __DIR__ . '/Property/VCard/TimeStamp.php';
4949
include __DIR__ . '/Splitter/ICalendar.php';
5050
include __DIR__ . '/Component/VAlarm.php';
5151
include __DIR__ . '/Component/VCalendar.php';
5252
include __DIR__ . '/Component/VEvent.php';
5353
include __DIR__ . '/Component/VFreeBusy.php';
5454
include __DIR__ . '/Component/VJournal.php';
5555
include __DIR__ . '/Component/VTodo.php';
56-
include __DIR__ . '/Property/CalAddress.php';
57-
include __DIR__ . '/Property/DateAndOrTime.php';
5856
include __DIR__ . '/Property/FlatText.php';
57+
include __DIR__ . '/Property/ICalendar/CalAddress.php';
58+
include __DIR__ . '/Property/VCard/DateTime.php';
59+
include __DIR__ . '/Property/VCard/Date.php';
5960
// End includes

0 commit comments

Comments
 (0)