From b67545c6fcfb94f5a8ef86b0425666ef8330eb99 Mon Sep 17 00:00:00 2001 From: Wito Chandra Date: Tue, 2 Oct 2018 20:40:57 +0700 Subject: [PATCH] bump version & update readme --- CHANGELOG.md | 8 +++++++- README.md | 11 ++++++++--- pubspec.yaml | 2 +- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de09036..1ae377a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ # Changelog +## [0.4.0](https://pub.dartlang.org/packages/webfeed/versions/0.4.0) +### Added +- Support for dublin core namespace +- Support enclosure in rss item +- Set minimum dart version into 2 + ## [0.3.0](https://pub.dartlang.org/packages/webfeed/versions/0.3.0) ### Added -- Support for image namespaces +- Support for image namespace diff --git a/README.md b/README.md index f1704a6..15a17da 100644 --- a/README.md +++ b/README.md @@ -3,19 +3,21 @@ [![Build Status](https://travis-ci.org/witochandra/webfeed.svg?branch=master)](https://travis-ci.org/witochandra/webfeed) [![Pub](https://img.shields.io/pub/v/webfeed.svg)](https://pub.dartlang.org/packages/webfeed) -A dart package for parsing RSS and Atom feed. +A dart package for parsing RSS and Atom feed. Supporting ### Features - [x] RSS - [x] Atom -- [x] Media RSS +- [x] Namespaces + - [x] Media RSS + - [x] Dublin Core ### Installing Add this line into your `pubspec.yaml` ``` -webfeed: ^0.3.0 +webfeed: ^0.4.0 ``` Import the package into your dart code using: @@ -53,6 +55,7 @@ feed.managingEditor feed.rating feed.webMaster feed.ttl +feed.dc RssItem item = feed.items.first; item.title @@ -65,6 +68,8 @@ item.author item.comments item.source item.media +item.enclosure +item.dc ``` **Atom** diff --git a/pubspec.yaml b/pubspec.yaml index 09b80e2..e85def4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: webfeed -version: 0.3.0 +version: 0.4.0 description: webfeed is a dart package for parsing RSS and Atom feeds. author: Wito Chandra homepage: https://github.com/witochandra/webfeed