Skip to content

Commit

Permalink
update xml deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kb0 committed Jul 26, 2020
1 parent 2379117 commit 43fec4f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dart: stable
jobs:
include:
- stage: analyze
script: dartanalyzer --fatal-warnings .
script: dartanalyzer --fatal-warnings --fatal-infos --verbose .
- stage: analyze
script: dartfmt --dry-run --set-exit-if-changed .
- stage: unit_test
Expand Down
2 changes: 1 addition & 1 deletion lib/src/gpx_writer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class GpxWriter {
}
});

return builder.build();
return builder.buildDocument();
}

void _writeMetadata(XmlBuilder builder, Metadata metadata) {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/kml_writer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class KmlWriter {
});
});

return builder.build();
return builder.buildDocument();
}

void _writeMetadata(XmlBuilder builder, Metadata metadata) {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ environment:
dependencies:
quiver: '>=2.0.0 <3.0.0'
collection: ^1.14.11
xml: '>=3.5.0 <5.0.0'
xml: '>=4.3.0 <5.0.0'

dev_dependencies:
test: ^1.6.5

0 comments on commit 43fec4f

Please sign in to comment.