diff --git a/README.md b/README.md
index 468df062a..8f11fea53 100644
--- a/README.md
+++ b/README.md
@@ -15,14 +15,14 @@ ES-Hadoop 2.0.x and 2.1.x are compatible with Elasticsearch __1.X__ *only*
## Installation
-### Stable Release (currently `2.4.0`)
+### Stable Release (currently `2.4.1`)
Available through any Maven-compatible tool:
```xml
org.elasticsearch
elasticsearch-hadoop
- 2.4.0
+ 2.4.1
```
or as a stand-alone [ZIP](http://www.elastic.co/downloads/hadoop).
@@ -35,7 +35,7 @@ Grab the latest nightly build from the [repository](http://oss.sonatype.org/cont
org.elasticsearch
elasticsearch-hadoop
- 2.4.1.BUILD-SNAPSHOT
+ 2.4.2.BUILD-SNAPSHOT
```
diff --git a/docs/src/reference/asciidoc/index.adoc b/docs/src/reference/asciidoc/index.adoc
index f5337cd6a..882ecf025 100644
--- a/docs/src/reference/asciidoc/index.adoc
+++ b/docs/src/reference/asciidoc/index.adoc
@@ -10,9 +10,9 @@
:ey: Elasticsearch on YARN
:ref: http://www.elastic.co/guide/en/elasticsearch/reference/2.0
:description: Reference documentation of {eh}
-:ver: 2.4.0
-:ver-d: 2.4.1.BUILD-SNAPSHOT
-:es-v: 2.4.0
+:ver: 2.4.1
+:ver-d: 2.4.2.BUILD-SNAPSHOT
+:es-v: 2.4.1
:sp-v: 1.6.1
:st-v: 0.9.6
:pg-v: 0.15.0
diff --git a/gradle.properties b/gradle.properties
index 70055c170..727b7bb56 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -45,4 +45,4 @@ groovyVersion = 2.4.4
# --------------------
# Project wide version
# --------------------
-version=2.4.1.BUILD.SNAPSHOT
+version=2.4.1
diff --git a/repository-hdfs/README.md b/repository-hdfs/README.md
index d59ad4aab..a0e2b65eb 100644
--- a/repository-hdfs/README.md
+++ b/repository-hdfs/README.md
@@ -46,7 +46,7 @@ Security is hard.
While efforts like [these](https://github.com/elastic/elasticsearch/pull/14108) help with per-plugin permissions, the ultimate goal is having a secure Elasticsearch install. Unfortunately Hadoop (especially 2.x) requires _dangerous_ permissions such as _execute_ on _all_ files (triggered during even [basic initialization](https://github.com/apache/hadoop/blob/772ea7b41b06beaa1f4ac4fa86eac8d6e6c8cd36/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/Shell.java#L728). Permissions like this (not to mention the shell execution) are simply too _dangerous_ and security is significantly affected.
Where possible, we try to find the common ground and have the code still running securely with hacks like [these](https://github.com/elastic/elasticsearch/blob/105411060c44cd796187068abe9df6168ff9253b/core/src/main/java/org/elasticsearch/bootstrap/ESPolicy.java#L88).
-As the above is addressed only in master (potentially the upcoming Elasticsearch 2.3), in the meantime users need to be aware of the current situation and act accordingly. That is, understand that by using HDFS plugin the Java Security
+As the above is addressed only in master (now in Elasticsearch 5.0), in the meantime users need to be aware of the current situation and act accordingly. That is, understand that by using HDFS plugin the Java Security
Manager is disabled.
### Node restart
@@ -54,10 +54,10 @@ _After_ installing the plugin on _every_ Elasticsearch node, be sure to _restart
### Stable version
As with any other plugin, simply run:
-`bin/plugin install elasticsearch/elasticsearch-repository-hdfs/2.2.0`
+`bin/plugin install elasticsearch/elasticsearch-repository-hdfs/2.4.1`
When looking for `light` or `hadoop2` artifacts use:
-`bin/plugin install elasticsearch/elasticsearch-repository-hdfs/2.2.0-`
+`bin/plugin install elasticsearch/elasticsearch-repository-hdfs/2.4.1-`
### Development Snapshot
To install the latest snapshot, please install the plugin manually using:
@@ -69,7 +69,7 @@ Or grab the latest nightly build from the [repository](http://oss.sonatype.org/c
org.elasticsearch
elasticsearch-repository-hdfs
- 2.4.1.BUILD-SNAPSHOT
+ 2.4.2.BUILD-SNAPSHOT
```