diff --git a/CHANGELOG.md b/CHANGELOG.md index 3362f1be7..1c604d1d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # elasticsearch-js changelog +## 11.0 (Apr 5 2016) + - apiVersion `"2.3"` is not the default + - updated APIs, to use the new API's exposed by the `v5.0.0-alpha1` of elasticsearch use the `"master"` api version. + - Switch to [promise](https://www.npmjs.com/package/promise) from [promise-js](https://www.npmjs.com/package/promise-js) to prevent polluting global environment + ## 10.1 (Jan 8 2016) - browser builds now include the "unstable" api's from elasticsearch - added `createNodeAgent` configuration value for overriding the agent that the node.js HttpConnector uses. (see [#329](https://github.com/elastic/elasticsearch-js/pull/329)) diff --git a/README.md b/README.md index 1d34c6af4..ccf2edb90 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# elasticsearch.js 11.0.0-snapshot +# elasticsearch.js 11.0.0 The official low-level Elasticsearch client for Node.js and the browser. diff --git a/docs/browser_builds.asciidoc b/docs/browser_builds.asciidoc index b1e90fd66..dc19ff343 100644 --- a/docs/browser_builds.asciidoc +++ b/docs/browser_builds.asciidoc @@ -14,7 +14,7 @@ bower install elasticsearch --------- === Download - * v11.0.0-snapshot: https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-11.0.0-snapshot.zip[zip], https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-11.0.0-snapshot.tar.gz[tar.gz] + * v11.0.0: https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-11.0.0.zip[zip], https://download.elasticsearch.org/elasticsearch/elasticsearch-js/elasticsearch-js-11.0.0.tar.gz[tar.gz] NOTE: Here's an example that integrates elasticsearch.js with React https://github.com/scotchfield/elasticsearch-react-example/[on GitHub] diff --git a/package.json b/package.json index 6b4b06a82..35391f855 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": "11.0.0-snapshot", + "version": "11.0.0", "browser": { "./src/lib/connectors/index.js": "./src/lib/connectors/browser_index.js", "./src/lib/loggers/index.js": "./src/lib/loggers/browser_index.js", @@ -104,4 +104,4 @@ "engines": { "node": ">=0.8" } -} +} \ No newline at end of file