Skip to content

Commit 7348e10

Browse files
authored
small clean-ups; sdk version constraint (#13)
1 parent a0c2524 commit 7348e10

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: dart
22
dart:
3-
- stable
3+
# - stable # there's no Dart 2 on the stable channel yet
44
- dev
55
script: ./tool/presubmit.sh

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ program to https://sentry.io error tracking service.
77

88
## Versions
99

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

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

1414
## Usage
1515

pubspec.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ description: A pure Dart Sentry.io client.
44
author: Flutter Authors <[email protected]>
55
homepage: https://github.com/flutter/sentry
66

7+
environment:
8+
sdk: ">=2.0.0-dev.28.0 <3.0.0"
9+
710
dependencies:
811
http: ">=0.11.0 <2.0.0"
912
meta: ">=1.0.0 <2.0.0"

0 commit comments

Comments
 (0)