diff --git a/.travis.yml b/.travis.yml
index 629908b..006980f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,7 +4,7 @@ deploy:
api_key:
secure: $GITHUB_API_KEY
skip_cleanup: true
- file: target/releases/analysis-homoglyph-0.1.0.zip
+ file: target/releases/analysis-homoglyph-0.1.1.zip
on:
tags: true
script:
diff --git a/README.md b/README.md
index 98aa01a..3ad330f 100644
--- a/README.md
+++ b/README.md
@@ -19,12 +19,13 @@ The token 'hello' will be replaced with the following tokens:
### Elasticsearch version compatibility
| Plugin version | Elasticsearch version |
|------------------|-----------------------|
+| 0.1.1 | 7.3.1 |
| 0.1.0 | 7.3.1 |
## Installation
To install the plugin on an Elasticsearch node make sure you are in the Elasticsearch directory and then run:
```
-bin/elasticsearch-plugin install https://github.com/intsights/elasticsearch-analysis-homoglyph/releases/download/v0.1.0/analysis-homoglyph-0.1.0.zip
+bin/elasticsearch-plugin install https://github.com/intsights/elasticsearch-analysis-homoglyph/releases/download/v0.1.1/analysis-homoglyph-0.1.1.zip
```
You can verify the plugin has been installed by running:
@@ -40,12 +41,12 @@ Save the following in a Dockerfile:
```
FROM docker.elastic.co/elasticsearch/elasticsearch:7.3.1
-RUN /usr/share/elasticsearch/bin/elasticsearch-plugin install https://github.com/intsights/elasticsearch-analysis-homoglyph/releases/download/v0.1.0/analysis-homoglyph-0.1.0.zip
+RUN /usr/share/elasticsearch/bin/elasticsearch-plugin install https://github.com/intsights/elasticsearch-analysis-homoglyph/releases/download/v0.1.1/analysis-homoglyph-0.1.1.zip
```
Then run:
```
-docker build -f /path/to/Dockerfile -t elaticsearch-with-homoglyph-plugin:0.1.0 .
-docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" elaticsearch-with-homoglyph-plugin:0.1.0
+docker build -f /path/to/Dockerfile -t elaticsearch-with-homoglyph-plugin:0.1.1 .
+docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" elaticsearch-with-homoglyph-plugin:0.1.1
```
Depending on your system, you might need to run the Docker with `sudo`
diff --git a/pom.xml b/pom.xml
index 8189a88..402f659 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.intsights.elasticsearch.plugin.analysis
analysis-homoglyph
- 0.1.0
+ 0.1.1
jar
7.3.1