Преглед изворни кода

bump version & update readme

master
Wito Chandra пре 7 година
родитељ
комит
b67545c6fc
3 измењених фајлова са 16 додато и 5 уклоњено
  1. +7
    -1
      CHANGELOG.md
  2. +8
    -3
      README.md
  3. +1
    -1
      pubspec.yaml

+ 7
- 1
CHANGELOG.md Прегледај датотеку

@@ -1,4 +1,10 @@
# Changelog # 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) ## [0.3.0](https://pub.dartlang.org/packages/webfeed/versions/0.3.0)
### Added ### Added
- Support for image namespaces
- Support for image namespace

+ 8
- 3
README.md Прегледај датотеку

@@ -3,19 +3,21 @@
[![Build Status](https://travis-ci.org/witochandra/webfeed.svg?branch=master)](https://travis-ci.org/witochandra/webfeed) [![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) [![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 ### Features


- [x] RSS - [x] RSS
- [x] Atom - [x] Atom
- [x] Media RSS
- [x] Namespaces
- [x] Media RSS
- [x] Dublin Core


### Installing ### Installing


Add this line into your `pubspec.yaml` Add this line into your `pubspec.yaml`
``` ```
webfeed: ^0.3.0
webfeed: ^0.4.0
``` ```


Import the package into your dart code using: Import the package into your dart code using:
@@ -53,6 +55,7 @@ feed.managingEditor
feed.rating feed.rating
feed.webMaster feed.webMaster
feed.ttl feed.ttl
feed.dc


RssItem item = feed.items.first; RssItem item = feed.items.first;
item.title item.title
@@ -65,6 +68,8 @@ item.author
item.comments item.comments
item.source item.source
item.media item.media
item.enclosure
item.dc
``` ```


**Atom** **Atom**


+ 1
- 1
pubspec.yaml Прегледај датотеку

@@ -1,5 +1,5 @@
name: webfeed name: webfeed
version: 0.3.0
version: 0.4.0
description: webfeed is a dart package for parsing RSS and Atom feeds. description: webfeed is a dart package for parsing RSS and Atom feeds.
author: Wito Chandra <wito.c.91@gmail.com> author: Wito Chandra <wito.c.91@gmail.com>
homepage: https://github.com/witochandra/webfeed homepage: https://github.com/witochandra/webfeed


Loading…
Откажи
Сачувај