chore: set max SDK version to <3.0.0 (#22)

diff --git a/.travis.yml b/.travis.yml
index d93de37..2b5aaa5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,7 +7,6 @@
 # See https://docs.travis-ci.com/user/languages/dart/ for details.
 dart_task:
   - test: --platform vm,firefox
-    install_dartium: true
   - dartanalyzer
 
 matrix:
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3c5854c..5deff3b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 1.1.7
+
+* Set max SDK version to `<3.0.0`, and adjust other dependencies.
+
 ## 1.1.6
 
 * Improve support for Dart 2 runtime semantics.
diff --git a/analysis_options.yaml b/analysis_options.yaml
deleted file mode 100644
index a10d4c5..0000000
--- a/analysis_options.yaml
+++ /dev/null
@@ -1,2 +0,0 @@
-analyzer:
-  strong-mode: true
diff --git a/pubspec.yaml b/pubspec.yaml
index 6f25684..5ad9543 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,15 +1,19 @@
 name: glob
-version: 1.1.6
-author: "Dart Team <misc@dartlang.org>"
-homepage: https://github.com/dart-lang/glob
+version: 1.1.7
+
 description: Bash-style filename globbing.
-dependencies:
-  async: ">=1.2.0 <3.0.0"
-  collection: "^1.1.0"
-  path: "^1.3.0"
-  string_scanner: ">=0.1.0 <2.0.0"
-dev_dependencies:
-  test: "^0.12.0"
-  test_descriptor: "^1.0.0"
+author: Dart Team <misc@dartlang.org>
+homepage: https://github.com/dart-lang/glob
+
 environment:
-  sdk: ">=1.23.0 <2.0.0"
+  sdk: '>=1.23.0 <3.0.0'
+
+dependencies:
+  async: '>=1.2.0 <3.0.0'
+  collection: ^1.1.0
+  path: ^1.3.0
+  string_scanner: '>=0.1.0 <2.0.0'
+
+dev_dependencies:
+  test: '>=0.12.0 <2.0.0'
+  test_descriptor: ^1.0.0