-
Notifications
You must be signed in to change notification settings - Fork 35
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
chore: set max SDK version to <3.0.0 #61
Conversation
pubspec.yaml
Outdated
@@ -1,16 +1,21 @@ | |||
name: watcher | |||
version: 0.9.7+9 | |||
version: 0.9.8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kevmoo: maybe this would be a good time to bump this up to 1.0.0?
413f655
to
b6fcf68
Compare
b6fcf68
to
d3c3cc4
Compare
@@ -17,8 +17,7 @@ void main() { | |||
sharedTests(); | |||
|
|||
test('DirectoryWatcher creates a LinuxDirectoryWatcher on Linux', () { | |||
expect( | |||
new DirectoryWatcher('.'), new isInstanceOf<LinuxDirectoryWatcher>()); | |||
expect(new DirectoryWatcher('.'), TypeMatcher<LinuxDirectoryWatcher>()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you're going to remove one new
, should probably remove the other too. Or just keep the new
for now and we'll remove them all later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll add back the new
. We can run dartfmt --fix
later (so as to keep this PR simple).
1a16bde
to
036fe88
Compare
036fe88
to
42b0c6f
Compare
No description provided.