Ver código fonte

bump version & update readme

master
Wito Chandra 7 anos atrás
pai
commit
b67545c6fc
3 arquivos alterados com 16 adições e 5 exclusões
  1. +7
    -1
      CHANGELOG.md
  2. +8
    -3
      README.md
  3. +1
    -1
      pubspec.yaml

+ 7
- 1
CHANGELOG.md Ver arquivo

@@ -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

+ 8
- 3
README.md Ver arquivo

@@ -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**


+ 1
- 1
pubspec.yaml Ver arquivo

@@ -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 <wito.c.91@gmail.com>
homepage: https://github.com/witochandra/webfeed


Carregando…
Cancelar
Salvar