Skip to content

Commit

Permalink
v7.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jikyo committed Jun 21, 2020
1 parent 74f204a commit ae873fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Note that this token filter `jikyo_romaji` assumes to work with `tokenizer: keyw

# Supported Elasticsearch versions

* 7.6: [7.6.0](https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/tag/v7.6.0),
* 7.6: [7.6.1](https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/tag/v7.6.1), [7.6.0](https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/tag/v7.6.0),
* 7.5: [7.5.2](https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/tag/v7.5.2), [7.5.1](https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/tag/v7.5.1), ~~7.5.0~~
* 7.4: [7.4.2](https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/tag/v7.4.2), [7.4.1](https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/tag/v7.4.1), [7.4.0](https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/tag/v7.4.0)
* 7.3: [7.3.2](https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/tag/v7.3.2), [7.3.1](https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/tag/v7.3.1), [7.3.0](https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/tag/v7.3.0)
Expand All @@ -18,7 +18,7 @@ Note that this token filter `jikyo_romaji` assumes to work with `tokenizer: keyw
# Installation

```bash
$ sudo bin/elasticsearch-plugin install https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/download/v7.6.0/analysis-jikyo-romaji-7.6.0.zip
$ sudo bin/elasticsearch-plugin install https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/download/v7.6.1/analysis-jikyo-romaji-7.6.1.zip
```


Expand Down
11 changes: 3 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ buildscript {
jcenter()
}
dependencies {
classpath 'org.elasticsearch.gradle:build-tools:7.6.0'
classpath 'org.elasticsearch.gradle:build-tools:7.6.1'
}
}

apply plugin: 'elasticsearch.esplugin'

def ver = [
plugin: '7.6.0',
es: '7.6.0',
plugin: '7.6.1',
es: '7.6.1',
lucene: '8.4.0', // https://github.com/elastic/elasticsearch/blob/master/buildSrc/version.properties
romaji: '0.0.4',
]
Expand All @@ -36,11 +36,6 @@ dependencies {
compile 'com.github.jikyo:romaji:' + ver.romaji
}

configurations.restSpec.withDependencies { dependencies ->
dependencies.clear()
dependencies.add(project.dependencies.create("org.elasticsearch:rest-api-spec:${ver.es}"))
}

dependencyLicenses.enabled = false
thirdPartyAudit.enabled = false
licenseHeaders.enabled = false

0 comments on commit ae873fd

Please sign in to comment.