version 8.1.0

This commit is contained in:
spalger
2015-09-08 18:28:12 -07:00
parent 6e0d273d75
commit cd336c6d6e
4 changed files with 9 additions and 6 deletions

View File

@ -1,5 +1,9 @@
# elasticsearch-js changelog
## 8.1 (Sep 8 2014)
- 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.
## 8.0 (Aug 26 2015)
- apiVersion changed back to `"1.7"` until es 2.0 is actually released.

View File

@ -32,10 +32,10 @@ Check out the [Browser Builds](http://www.elastic.co/guide/en/elasticsearch/clie
</tr><tr>
<td>download:</td>
<td align="center">
<a href="https://download.elastic.co/elasticsearch/elasticsearch-js/elasticsearch-js-8.0.1.zip">zip</a>
<a href="https://download.elastic.co/elasticsearch/elasticsearch-js/elasticsearch-js-8.1.0.zip">zip</a>
</td>
<td align="center">
<a href="https://download.elastic.co/elasticsearch/elasticsearch-js/elasticsearch-js-8.0.1.tar.gz">tar.gz</a>
<a href="https://download.elastic.co/elasticsearch/elasticsearch-js/elasticsearch-js-8.1.0.tar.gz">tar.gz</a>
</td>
</tr>
</table>

View File

@ -14,7 +14,7 @@ bower install elasticsearch
---------
=== Download
* v8.0.1: https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-8.0.1.zip[zip], https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-8.0.1.tar.gz[tar.gz]
* 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]
=== Angular Build

View File

@ -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.0.1",
"version": "8.1.0",
"browser": {
"./src/lib/connectors/index.js": "./src/lib/connectors/browser_index.js",
"./src/lib/loggers/index.js": "./src/lib/loggers/browser_index.js",
@ -98,7 +98,6 @@
"generate": "node scripts/generate"
},
"engines": {
"node": ">=0.8",
"iojs": ">=1.5"
"node": ">=0.8"
}
}