Skip to content

Commit e98fa56

Browse files
committed
Update version to 1.0.3. Fix formatting issue reported by analyser.
1 parent 7d79584 commit e98fa56

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# Changelog
22

3+
# 1.0.3
4+
5+
* Add support for Podcasting 2.0 Person tag.
6+
* Bug fixes.
7+
38
# 1.0.2
49

5-
Use innerText instead of value when Strings are wanted.
10+
* Use innerText instead of value when Strings are wanted.
611

712
# 1.0.1
813

lib/domain/podcast_index/rss_podcast_index_person.dart

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ class RssPodcastIndexPerson {
2323
final name = element.innerText.trim();
2424

2525
return RssPodcastIndexPerson(
26-
name: name, role: role, group: group, image: image, link: link);
26+
name: name,
27+
role: role,
28+
group: group,
29+
image: image,
30+
link: link,
31+
);
2732
}
2833
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: rss_dart
2-
version: 1.0.2
2+
version: 1.0.3
33
description: dart-rss is a rss parser for RSS1.0/RSS2.0/Atom. It also support Dublin-Core, Content, Syndication additional modules. This libary is forked from webfeed(https://github.com/witochandra/webfeed).
44
homepage: https://github.com/sudame/dart-rss
55
environment:

0 commit comments

Comments
 (0)