Skip to content

Commit

Permalink
release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-virkus committed Jul 14, 2021
1 parent c6e6686 commit 07bd070
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.2.0
- Improve documentation
- Renamed `Component` to `VComponent` for clarity

## 0.1.0

* Initial release with full parsing and high level API support.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ SUMMARY:Bastille Day Party
GEO:48.85299;2.36885
END:VEVENT
END:VCALENDAR''';
final icalendar = Component.parse(text) as VCalendar;
print(icalendar.productId);
final icalendar = VComponent.parse(text) as VCalendar;
print(icalendar.productId); // -//hacksw/handcal//NONSGML v1.0//EN
final event = icalendar.children.first as VEvent;
print(event.summary); // Bastille Day Party
print(event.start); // 1997-06-14 at 17:00
Expand All @@ -40,7 +40,7 @@ Add this dependency your pubspec.yaml file:

```
dependencies:
enough_icalendar: ^0.1.0
enough_icalendar: ^0.2.0
```
The latest version or `enough_icalendar` is [![enough_icalendar version](https://img.shields.io/pub/v/enough_icalendar.svg)](https://pub.dartlang.org/packages/enough_icalendar).

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: enough_icalendar
description: icalendar library in pure Dart. Fully compliant with RFC 5545.
version: 0.1.0
version: 0.2.0
homepage: https://github.com/Enough-Software/enough_icalendar

environment:
Expand Down

0 comments on commit 07bd070

Please sign in to comment.