From 07bd070997b5b9357d06ec2f84bb718f517d4a46 Mon Sep 17 00:00:00 2001 From: Robert Virkus Date: Wed, 14 Jul 2021 20:12:46 +0200 Subject: [PATCH] release v0.2.0 --- CHANGELOG.md | 4 ++++ README.md | 6 +++--- pubspec.yaml | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e63453..607cf42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index f6cce85..f0e1935 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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). diff --git a/pubspec.yaml b/pubspec.yaml index 2107a3d..499bea2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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: