Skip to content

Commit 316a1c9

Browse files
committed
Release 5.6.0
1 parent 6a3954e commit 316a1c9

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

README.textile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ h2. Compatibility
99
The following table shows the compatible versions of Elasticsearch and Morphological Analysis Plugin.
1010

1111
|_. Morphological Analysis Plugin |_. Elasticsearch |_. URL |
12+
| 5.6.0 | 5.6.0 | http://dl.bintray.com/content/imotov/elasticsearch-plugins/org/elasticsearch/elasticsearch-analysis-morphology/5.6.0/elasticsearch-analysis-morphology-5.6.0.zip |
1213
| 5.5.3 | 5.5.3 | http://dl.bintray.com/content/imotov/elasticsearch-plugins/org/elasticsearch/elasticsearch-analysis-morphology/5.5.3/elasticsearch-analysis-morphology-5.5.3.zip |
1314
| 5.5.2 | 5.5.2 | http://dl.bintray.com/content/imotov/elasticsearch-plugins/org/elasticsearch/elasticsearch-analysis-morphology/5.5.2/elasticsearch-analysis-morphology-5.5.2.zip |
1415
| 5.5.1 | 5.5.1 | http://dl.bintray.com/content/imotov/elasticsearch-plugins/org/elasticsearch/elasticsearch-analysis-morphology/5.5.1/elasticsearch-analysis-morphology-5.5.1.zip |
@@ -64,10 +65,10 @@ In order to install the plugin, simply run the following command in the elastics
6465
bin/elasticsearch-plugin install URL
6566
</pre>
6667

67-
where @URL@ is the URL of the plugin from the compatibility table. For examples to install version @5.5.3@ run
68+
where @URL@ is the URL of the plugin from the compatibility table. For examples to install version @5.6.0@ run
6869

6970
<pre>
70-
bin/elasticsearch-plugin install http://dl.bintray.com/content/imotov/elasticsearch-plugins/org/elasticsearch/elasticsearch-analysis-morphology/5.5.3/elasticsearch-analysis-morphology-5.5.3.zip
71+
bin/elasticsearch-plugin install http://dl.bintray.com/content/imotov/elasticsearch-plugins/org/elasticsearch/elasticsearch-analysis-morphology/5.6.0/elasticsearch-analysis-morphology-5.6.0.zip
7172
</pre>
7273

7374
h2. Installation on 2.x

build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ buildscript {
2323
jcenter()
2424
}
2525
dependencies {
26-
classpath "org.elasticsearch.gradle:build-tools:5.5.3"
26+
classpath "org.elasticsearch.gradle:build-tools:5.6.0"
2727
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7"
2828
}
2929
}
@@ -41,13 +41,13 @@ apply plugin: 'maven-publish'
4141
// }
4242
//}
4343

44-
version = '5.5.3'
44+
version = '5.6.0'
4545

4646
esplugin {
4747
description 'English and Russian Morphology for ElasticSearch.'
4848
classname 'org.elasticsearch.plugin.analysis.morphology.AnalysisMorphologyPlugin'
4949
name 'analysis-morphology'
50-
version '5.5.3'
50+
version '5.6.0'
5151
}
5252

5353
dependencies {
@@ -71,6 +71,7 @@ publishing {
7171

7272
project.licenseFile = project.rootProject.file('LICENSE.txt')
7373
project.noticeFile = project.rootProject.file('NOTICE.txt')
74+
project.ext.projectSubstitutions = ["": ""] // Empty for now
7475

7576
// Only needed if we publish to bintray
7677
if (project.hasProperty('bintrayUser')) {

0 commit comments

Comments
 (0)