diff --git a/CHANGELOG.md b/CHANGELOG.md
index f25cd856b..9a2c0d26b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
# elasticsearch-js changelog
+## 8.2 (Sep 17 2015)
+ - Added [`sniffedNodesProtocol`](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/configuration.html#config-sniffed-nodes-protocol) configuration option
+ - Fixed an issue which prevented promised from getting rejected if the `GET` verb was used with a request body ([#263](https://github.com/elastic/elasticsearch-js/issues/263))
+
## 8.1 (Sep 8 2015)
- Added apiVersion `"2.x"`, which will semi-regularly be updated to match the latest development at [elastic/elasticsearch#2.x](https://github.com/elastic/elasticsearch/tree/2.x)
- Removed node engine upper-bound, supporting 4.0 and versions beyond.
diff --git a/README.md b/README.md
index ad3e54e4e..f33c2f117 100644
--- a/README.md
+++ b/README.md
@@ -32,10 +32,10 @@ Check out the [Browser Builds](http://www.elastic.co/guide/en/elasticsearch/clie
| download: |
-zip
+zip
|
-tar.gz
+tar.gz
|
diff --git a/docs/browser_builds.asciidoc b/docs/browser_builds.asciidoc
index 29c062590..a350c11a1 100644
--- a/docs/browser_builds.asciidoc
+++ b/docs/browser_builds.asciidoc
@@ -14,7 +14,7 @@ bower install elasticsearch
---------
=== Download
- * v8.1.0: https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-8.1.0.zip[zip], https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-8.1.0.tar.gz[tar.gz]
+ * v8.2.0: https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-8.2.0.zip[zip], https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-8.2.0.tar.gz[tar.gz]
=== Angular Build
diff --git a/package.json b/package.json
index 65c6fe112..2808eb2f7 100644
--- a/package.json
+++ b/package.json
@@ -7,7 +7,7 @@
"description": "The official low-level Elasticsearch client for Node.js and the browser.",
"main": "src/elasticsearch.js",
"homepage": "http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html",
- "version": "8.1.0",
+ "version": "8.2.0",
"browser": {
"./src/lib/connectors/index.js": "./src/lib/connectors/browser_index.js",
"./src/lib/loggers/index.js": "./src/lib/loggers/browser_index.js",
@@ -100,4 +100,4 @@
"engines": {
"node": ">=0.8"
}
-}
+}
\ No newline at end of file