Merge branch 'utils'
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 98deb33..611977e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.11.1+3
+
+* Properly namespace an internal library name.
+
 ## 0.11.1+2
 
 * Widen the version constraint on `unittest`.
diff --git a/lib/src/utils.dart b/lib/src/utils.dart
index dde507a..8aa7d49 100644
--- a/lib/src/utils.dart
+++ b/lib/src/utils.dart
@@ -2,7 +2,7 @@
 // for details. All rights reserved. Use of this source code is governed by a
 // BSD-style license that can be found in the LICENSE file.
 
-library utils;
+library http.utils;
 
 import 'dart:async';
 import 'dart:convert';
diff --git a/pubspec.yaml b/pubspec.yaml
index ea6cc5c..2021749 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: http
-version: 0.11.1+2
+version: 0.11.1+3
 author: "Dart Team <misc@dartlang.org>"
 homepage: https://github.com/dart-lang/http
 description: A composable, Future-based API for making HTTP requests.