Skip to content

Commit

Permalink
Bump xml to 6.2.2 (#2)
Browse files Browse the repository at this point in the history
* Update .gitignore

* Bump deps
  • Loading branch information
daniel-keogh authored Apr 15, 2023
1 parent 5bd6688 commit a1ad5e6
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 467 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ build/

# Directory created by dartdoc
doc/api/

.idea/
8 changes: 0 additions & 8 deletions .idea/.gitignore

This file was deleted.

404 changes: 0 additions & 404 deletions .idea/libraries/Dart_Packages.xml

This file was deleted.

29 changes: 0 additions & 29 deletions .idea/libraries/Dart_SDK.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/misc.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.0

- Upgrade to `xml: ^6.2.2`

## 0.3.0

- Add a better building API.
Expand Down
2 changes: 1 addition & 1 deletion example/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ void readExample() {

final doc = OpmlDocument.parse(xml);

print(doc.head.title! + ':');
print('${doc.head.title}:');

for (var category in doc.body) {
for (var feed in category.children!) {
Expand Down
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: opml
description: A Dart package for parsing and building Outline Processor Markup Language (OPML) documents.
version: 0.3.0
version: 0.4.0
homepage: https://github.com/daniel-keogh/opml

environment:
sdk: '>=2.16.1 <3.0.0'
sdk: '>=2.19.0 <3.0.0'

dependencies:
xml: ^5.4.1
xml: ^6.2.2

dev_dependencies:
lints: ^1.0.1
test: ^1.20.1
lints: ^2.0.1
test: ^1.24.1

0 comments on commit a1ad5e6

Please sign in to comment.