Add documentation and changelog entry, bump version.
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 611977e..32912e3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.11.2
+
+* Add a `BrowserClient.withCredentials` property.
+
 ## 0.11.1+3
 
 * Properly namespace an internal library name.
diff --git a/lib/browser_client.dart b/lib/browser_client.dart
index f7bbaae..6f03d9d 100644
--- a/lib/browser_client.dart
+++ b/lib/browser_client.dart
@@ -37,6 +37,10 @@
   /// Creates a new HTTP client.
   BrowserClient();
 
+  /// Whether to send credentials such as cookies or authorization headers for
+  /// cross-site requests.
+  ///
+  /// Defaults to `false`.
   bool withCredentials = false;
 
   /// Sends an HTTP request and asynchronously returns the response.
diff --git a/pubspec.yaml b/pubspec.yaml
index 2021749..6c8cd4a 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: http
-version: 0.11.1+3
+version: 0.11.2
 author: "Dart Team <misc@dartlang.org>"
 homepage: https://github.com/dart-lang/http
 description: A composable, Future-based API for making HTTP requests.