Skip to content

Commit b67545c

Browse files
committed
bump version & update readme
1 parent dba986d commit b67545c

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# Changelog
2+
## [0.4.0](https://pub.dartlang.org/packages/webfeed/versions/0.4.0)
3+
### Added
4+
- Support for dublin core namespace
5+
- Support enclosure in rss item
6+
- Set minimum dart version into 2
7+
28
## [0.3.0](https://pub.dartlang.org/packages/webfeed/versions/0.3.0)
39
### Added
4-
- Support for image namespaces
10+
- Support for image namespace

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,21 @@
33
[![Build Status](https://travis-ci.org/witochandra/webfeed.svg?branch=master)](https://travis-ci.org/witochandra/webfeed)
44
[![Pub](https://img.shields.io/pub/v/webfeed.svg)](https://pub.dartlang.org/packages/webfeed)
55

6-
A dart package for parsing RSS and Atom feed.
6+
A dart package for parsing RSS and Atom feed. Supporting
77

88
### Features
99

1010
- [x] RSS
1111
- [x] Atom
12-
- [x] Media RSS
12+
- [x] Namespaces
13+
- [x] Media RSS
14+
- [x] Dublin Core
1315

1416
### Installing
1517

1618
Add this line into your `pubspec.yaml`
1719
```
18-
webfeed: ^0.3.0
20+
webfeed: ^0.4.0
1921
```
2022

2123
Import the package into your dart code using:
@@ -53,6 +55,7 @@ feed.managingEditor
5355
feed.rating
5456
feed.webMaster
5557
feed.ttl
58+
feed.dc
5659
5760
RssItem item = feed.items.first;
5861
item.title
@@ -65,6 +68,8 @@ item.author
6568
item.comments
6669
item.source
6770
item.media
71+
item.enclosure
72+
item.dc
6873
```
6974

7075
**Atom**

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: webfeed
2-
version: 0.3.0
2+
version: 0.4.0
33
description: webfeed is a dart package for parsing RSS and Atom feeds.
44
author: Wito Chandra <[email protected]>
55
homepage: https://github.com/witochandra/webfeed

0 commit comments

Comments
 (0)