Skip to content

Commit

Permalink
Release 5.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
damienalexandre committed Jul 9, 2017
1 parent 930a779 commit ec47bba
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions esplugin/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Elasticsearch analysis-emoji plugin

This plugin create a new Tokenizer called `emoji_tokenizer` based on `icu_tokenizer` and the latest (58.2) ICU data.
This plugin create a new Tokenizer called `emoji_tokenizer` based on `icu_tokenizer` and the latest (59.1) ICU data.

## Installation

Expand All @@ -11,8 +11,8 @@ The plugin version must match your Elasticsearch version.
```
bin/elasticsearch-plugin install URL
# For 5.3.0:
bin/elasticsearch-plugin install https://github.com/jolicode/emoji-search/releases/download/5.3.0/analysis-emoji-5.3.0.zip
# For 5.3.3:
bin/elasticsearch-plugin install https://github.com/jolicode/emoji-search/releases/download/5.3.3/analysis-emoji-5.3.3.zip
```

## Versions
Expand All @@ -21,6 +21,7 @@ ICU is always up to date to the latest data in this plugin, so upgrading may req

analysis-emoji version and ES version | Install URL
-----------|-----------
5.3.3 (ICU 59.1) | https://github.com/jolicode/emoji-search/releases/download/5.3.3/analysis-emoji-5.3.3.zip
5.3.0 | https://github.com/jolicode/emoji-search/releases/download/5.3.0/analysis-emoji-5.3.0.zip
5.2.2 | https://github.com/jolicode/emoji-search/releases/download/5.2.2.1/analysis-emoji-5.2.2.1.zip
5.2.1 | https://github.com/jolicode/emoji-search/releases/download/5.2.1/analysis-emoji-5.2.1.zip
Expand Down
6 changes: 3 additions & 3 deletions esplugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}

dependencies {
classpath "org.elasticsearch.gradle:build-tools:5.3.0"
classpath "org.elasticsearch.gradle:build-tools:5.3.3"
}
}

Expand All @@ -17,7 +17,7 @@ if (GradleVersion.current() != GradleVersion.version('2.13')) {
}

group = 'org.elasticsearch.plugin'
version = '5.3.0'
version = '5.3.3'

apply plugin: 'java'
apply plugin: 'elasticsearch.esplugin'
Expand All @@ -32,7 +32,7 @@ esplugin {
dependencies {
compile "org.elasticsearch:elasticsearch:${versions.elasticsearch}"
compile "org.apache.lucene:lucene-analyzers-icu:${versions.lucene}"
compile 'com.ibm.icu:icu4j:58.2'
compile 'com.ibm.icu:icu4j:59.1'
testCompile "org.elasticsearch.test:framework:${versions.elasticsearch}"
}

Expand Down

0 comments on commit ec47bba

Please sign in to comment.