Skip to content
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
small clean-ups; sdk version constraint
  • Loading branch information
yjbanov committed Mar 21, 2018
commit 292df4b5e021a330d5c59a65ae76bda90ac81678
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: dart
dart:
- stable
# - stable # there's no Dart 2 on the stable channel yet
- dev
script: ./tool/presubmit.sh
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ program to https://sentry.io error tracking service.

## Versions

>=0.0.0 and <2.0.0 is the range of versions compatible with Dart 1.
`>=0.0.0 <2.0.0` is the range of versions compatible with Dart 1.

>=2.0.0 and <3.0.0 is the range of versions compatible with Dart 2.
`>=2.0.0 <3.0.0` is the range of versions compatible with Dart 2.

## Usage

Expand Down
3 changes: 3 additions & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ description: A pure Dart Sentry.io client.
author: Flutter Authors <[email protected]>
homepage: https://github.com/flutter/sentry

environment:
sdk: ">=2.0.0-dev.28.0 <3.0.0"

dependencies:
http: ">=0.11.0 <2.0.0"
meta: ">=1.0.0 <2.0.0"
Expand Down