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

Allow the null-safe version of json_annotation #14

Merged
merged 2 commits into from
Dec 9, 2020
Merged
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dart:
- dev

dart_task:
- dartanalyzer: --fatal-infos --fatal-warnings .
- dartanalyzer: --fatal-infos .
- test

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

- Allow `package:json_annotation` `'>=1.0.0 <5.0.0'`.

## 0.1.1+2

- Support the latest version of `package:json_annotation`.
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: timing
version: 0.1.1+3-dev
version: 0.1.1+3
description: >-
A simple package for tracking the performance of synchronous and asynchronous
actions.
homepage: https://github.com/dart-lang/timing
repository: https://github.com/dart-lang/timing

environment:
sdk: ">=2.2.0 <3.0.0"

dependencies:
json_annotation: '>=1.0.0 <4.0.0'
json_annotation: '>=1.0.0 <5.0.0'

dev_dependencies:
build_runner: ^1.0.0
Expand Down