Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## [1.0.14] - 2026-07-15

### Fixed
- Fixed `CalDuration.toString()` zero-length serialization to emit valid ISO 8601 (`PT0S` / `-PT0S`) for reliable round-tripping.

## [1.0.13] - 2026-07-07

### Added
Expand Down Expand Up @@ -125,6 +130,7 @@ All notable changes to this project will be documented in this file.
- Timezone-aware date/time handling
- Two-layer architecture (document + semantic)

[1.0.14]: https://github.com/firstfloorsoftware/firstfloor_calendar/releases/tag/v1.0.14
[1.0.13]: https://github.com/firstfloorsoftware/firstfloor_calendar/releases/tag/v1.0.13
[1.0.12]: https://github.com/firstfloorsoftware/firstfloor_calendar/releases/tag/v1.0.12
[1.0.11]: https://github.com/firstfloorsoftware/firstfloor_calendar/releases/tag/v1.0.11
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: firstfloor_calendar
description: RFC 5545 compliant iCalendar (.ics) parser for Dart and Flutter.
version: 1.0.13
version: 1.0.14
repository: https://github.com/firstfloorsoftware/firstfloor_calendar
topics:
- icalendar
Expand Down
4 changes: 3 additions & 1 deletion test/semantic/calendar_types_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,9 @@ void main() {

test('zero duration roundtrips through serialization', () {
final dur = CalDuration();
final property = DocumentParser.parseProperty('DURATION:${dur.toString()}');
final property = DocumentParser.parseProperty(
'DURATION:${dur.toString()}',
);
final parsed = parseCalDuration(property);
expect(parsed, equals(dur));
});
Expand Down
Loading