Merge pull request #4 from dart-lang/update

expand the sdk constraint; rev version
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ac7eb0b..8d40dc4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 1.1.4
+
+* Expand the SDK version constraint to include `<2.0.0-dev.infinity`.
+
 ## 1.1.3
 
 * Fix all strong-mode warnings.
diff --git a/analysis_options.yaml b/analysis_options.yaml
new file mode 100644
index 0000000..a10d4c5
--- /dev/null
+++ b/analysis_options.yaml
@@ -0,0 +1,2 @@
+analyzer:
+  strong-mode: true
diff --git a/lib/typed_buffers.dart b/lib/typed_buffers.dart
index ac178b5..0951480 100644
--- a/lib/typed_buffers.dart
+++ b/lib/typed_buffers.dart
@@ -11,7 +11,7 @@
 /// That means that using the [TypedDataView.buffer] getter is not guaranteed
 /// to return the same result each time it is used, and that the buffer may
 /// be larger than what the list is using.
-library dart.pkg.typed_data.typed_buffers;
+library typed_data.typed_buffers;
 
 import "dart:collection" show ListBase;
 import "dart:typed_data";
diff --git a/lib/typed_data.dart b/lib/typed_data.dart
index d56b8bf..5ae0142 100644
--- a/lib/typed_data.dart
+++ b/lib/typed_data.dart
@@ -3,6 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 /// Utilities and functionality related to the "dart:typed_data" library.
-library dart.pkg.typed_data;
+library typed_data;
 
 export "package:typed_data/typed_buffers.dart";
diff --git a/pubspec.yaml b/pubspec.yaml
index 89d680f..59b3cc0 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,9 +1,9 @@
 name: typed_data
-version: 1.1.3
+version: 1.1.4
 author: Dart Team <misc@dartlang.org>
 description: Utility functions and classes related to the 'dart:typed_data' library.
 homepage: https://github.com/dart-lang/typed_data
 dev_dependencies:
   test: "^0.12.0"
 environment:
-  sdk: ">=1.8.0 <2.0.0"
+  sdk: ">=1.8.0 <2.0.0-dev.infinity"