Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updating dependencies, resolves #40 #41

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#
# In alphabetical order

Paul Köhler <[email protected]>
Daniel Varga <[email protected]>
Lukas Renggli <[email protected]>
Roel Spilker <[email protected]>
Expand Down
121 changes: 71 additions & 50 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,85 +1,106 @@
## 2.0.4

- Updating dependencies,
- raised xml from 5.4.1 to 6.1.0
- raised lints from 1.0.1 to 2.0.0

## 2.0.2
* bugfixes
* flutter test would sometimes emit a \u0001 character, and now most control characters are xml-escaped
* use newlines instead of the text '\n\n'

- bugfixes
- flutter test would sometimes emit a \u0001 character, and now most control characters are xml-escaped
- use newlines instead of the text '\n\n'

## 2.0.1
* documentation update

- documentation update

## 2.0.0
* null-safety
* require dart 2.14+
* updated dependencies:
* args: ^2.3.0
* intl: ^0.17.0
* testreport: ^2.0.1
* xml: ^5.3.1

- null-safety
- require dart 2.14+
- updated dependencies:
- args: ^2.3.0
- intl: ^0.17.0
- testreport: ^2.0.1
- xml: ^5.3.1

## 1.3.1
* updated dependencies:
* xml: '^4.3.0'

- updated dependencies:
- xml: '^4.3.0'

## 1.3.0
* ignore extra (invalid) lines generated by `flutter test --machine --coverage`
* updated dependencies:
* args: ^1.6.0

- ignore extra (invalid) lines generated by `flutter test --machine --coverage`
- updated dependencies:
- args: ^1.6.0

## 1.2.0
* require Dart 2.7+
* updated dependencies:
* intl: '^0.16.1'
* xml: '^3.7.0'
* testreport: '^1.2.0'

- require Dart 2.7+
- updated dependencies:
- intl: '^0.16.1'
- xml: '^3.7.0'
- testreport: '^1.2.0'

## 1.1.0
* require Dart 2.3+

- require Dart 2.3+

## 1.0.3
* use different way to pretty-print the generated XML, that is also compatible with xml 3.6.0

- use different way to pretty-print the generated XML, that is also compatible with xml 3.6.0

## 1.0.2
* updated dependencies:
* args: '^1.5.2'
* intl: '^0.15.8'

- updated dependencies:
- args: '^1.5.2'
- intl: '^0.15.8'

## 1.0.1
* updated dependencies:
* args: '^1.5.1'
* intl: '^0.15.7'
* testreport: '^1.0.0'
* xml: '^3.3.1'

- updated dependencies:
- args: '^1.5.1'
- intl: '^0.15.7'
- testreport: '^1.0.0'
- xml: '^3.3.1'

## 1.0.0
* force Dart 2.1+
* update dependency xml: '^3.3.0', fix problem with pretty printer

- force Dart 2.1+
- update dependency xml: '^3.3.0', fix problem with pretty printer

## 0.3.3
* more dart 2.0 support

- more dart 2.0 support

## 0.3.2
* updated dependencies:
* testreport: '^0.3.1'

- updated dependencies:
- testreport: '^0.3.1'

## 0.3.1
* support for Dart 2.0
* updated dependencies:
* args: '^1.4.4'
* intl: '^0.15.5'
* xml: '^3.0.0'

- support for Dart 2.0
- updated dependencies:
- args: '^1.4.4'
- intl: '^0.15.5'
- xml: '^3.0.0'

## 0.3.0
* updated dependencies:
* sdk: '>=1.19.0 <2.0.0'
* intl: '^0.15.0'
* testreport: '^0.3.0'
* xml: '^2.6.0'
* removed transitive dependencies on 'build_collection' and 'quiver'

- updated dependencies:
- sdk: '>=1.19.0 <2.0.0'
- intl: '^0.15.0'
- testreport: '^0.3.0'
- xml: '^2.6.0'
- removed transitive dependencies on 'build_collection' and 'quiver'

## 0.2.1
* restrict dependency on xml to '>= 2.5.0 <2.6.0' because the XmlPrettyWriter moved to a different library
* use one system-out element to contain all outputs instead of one per output

- restrict dependency on xml to '>= 2.5.0 <2.6.0' because the XmlPrettyWriter moved to a different library
- use one system-out element to contain all outputs instead of one per output

## 0.1.0

* Initial implementation
- Initial implementation
Loading