diff --git a/README.md b/README.md index 0d8bd844c..ef1c20388 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ The official low-level Elasticsearch client for Node.js and the browser. ## Features - One-to-one mapping with REST API and the other official clients - - Generalized, pluggable architecture. See [Extending Core Components](http://spenceralger.github.io/elasticsearch-js/index.html#extending) + - Generalized, pluggable architecture. See [Extending Core Components](http://elasticsearch.github.io/elasticsearch-js/index.html#extending) - Configurable, automatic discovery of cluster nodes - Persistent, Keep-Alive connections - Load balancing (with pluggable selection strategy) across all available nodes. @@ -24,12 +24,12 @@ We also provide builds of the elasticsearch.js client for use in the browser. If - master: [zip](https://download.elasticsearch.org/elasticsearch/elasticsearch-js/master/elasticsearch-js.zip), [tar.gz](https://download.elasticsearch.org/elasticsearch/elasticsearch-js/master/elasticsearch-js.tar.gz) ## Docs - - [Quick Start](http://spenceralger.github.io/elasticsearch-js/index.html#quick-start) - - [API](http://spenceralger.github.io/elasticsearch-js/api.html) - - [Configuration](http://spenceralger.github.io/elasticsearch-js/index.html#configuration) - - [Development/Contributing](http://spenceralger.github.io/elasticsearch-js/index.html#dev) - - [Extending Core Components](http://spenceralger.github.io/elasticsearch-js/index.html#extending) - - [Logging](http://spenceralger.github.io/elasticsearch-js/index.html#logging) + - [Quick Start](http://elasticsearch.github.io/elasticsearch-js/index.html#quick-start) + - [API](http://elasticsearch.github.io/elasticsearch-js/api.html) + - [Configuration](http://elasticsearch.github.io/elasticsearch-js/index.html#configuration) + - [Development/Contributing](http://elasticsearch.github.io/elasticsearch-js/index.html#dev) + - [Extending Core Components](http://elasticsearch.github.io/elasticsearch-js/index.html#extending) + - [Logging](http://elasticsearch.github.io/elasticsearch-js/index.html#logging) ## License diff --git a/grunt/browser_clients_release.js b/grunt/browser_clients_release.js index 25a341694..b005f65b3 100644 --- a/grunt/browser_clients_release.js +++ b/grunt/browser_clients_release.js @@ -11,7 +11,7 @@ module.exports = function (grunt) { grunt.registerTask('check_for_confirmation', function () { if (grunt.config.get('confirm.release')) { - grunt.verbose.log('release confirmed'); + grunt.log.verbose.writeln('release confirmed'); } else { throw new Error('Aborting release'); } diff --git a/grunt/config/s3.js b/grunt/config/s3.js index 0208a4695..71a57cf5d 100644 --- a/grunt/config/s3.js +++ b/grunt/config/s3.js @@ -21,7 +21,7 @@ module.exports = { upload: [ { src: '<%= distDir %>/archives/*', - dest: 'elasticsearch/elasticsearch-js/latest' + dest: 'elasticsearch/elasticsearch-js/master' } ] },