Remove the dependency on "path".

We never imported this, so it's not clear why the dependency was even
added.

Closes #2

R=rnystrom@google.com

Review URL: https://codereview.chromium.org//1589013004 .
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 23f911c..a5650cc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.1.4+1
+
+* Remove the dependency on `path`, since we don't actually import it.
+
 ## 0.1.4
 
 * Add `new SpanScanner.eager()` for creating a `SpanScanner` that eagerly
diff --git a/pubspec.yaml b/pubspec.yaml
index 35b3fe0..b249240 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,12 +1,11 @@
 name: string_scanner
-version: 0.1.4
+version: 0.1.4+1
 author: "Dart Team <misc@dartlang.org>"
 homepage: https://github.com/dart-lang/string_scanner
 description: >
   A class for parsing strings using a sequence of patterns.
 dependencies:
   charcode: "^1.1.0"
-  path: "^1.2.0"
   source_span: "^1.0.0"
 dev_dependencies:
   test: ">=0.12.0 <0.13.0"