Skip to content

Commit 0ac3745

Browse files
release 1.3.0
1 parent 3701d43 commit 0ac3745

File tree

2 files changed

+19
-28
lines changed

2 files changed

+19
-28
lines changed

README.md

Lines changed: 16 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@ analysis-sudachi is an Elasticsearch plugin for tokenization of Japanese text us
77

88
# What's new?
99

10+
- version 1.3.0
11+
- Upgrade sudachi morphological analyzer to 0.2.0
12+
- Import sudachi from maven central repository
13+
- Minor bug fix
14+
1015
- version 1.2.0
11-
- Upgrading sudachi morphological analyzer to 1.2.0-SNAPSHOT
16+
- Upgrading sudachi morphological analyzer to 0.2.0-SNAPSHOT
1217
- New filter `sudachi_normalizedform` was added; see [sudachi_normalizedform](#sudachi_normalizedform)
1318
- Default normalization behavior was changed; neather baseform filter and normalziedform filter not applied
1419
- `sudachi_readingform` filter was changed with new romaji mappings based on MS-IME
@@ -17,6 +22,9 @@ analysis-sudachi is an Elasticsearch plugin for tokenization of Japanese text us
1722
- version 1.1.0
1823
- `part-of-speech forward matching` is available on `stoptags`; see [sudachi_part_of_speech](#sudachi_part_of_speech)
1924

25+
- version 1.0.0
26+
- first release
27+
2028
# Build
2129

2230
1. Build analysis-sudachi.
@@ -26,12 +34,12 @@ analysis-sudachi is an Elasticsearch plugin for tokenization of Japanese text us
2634

2735
# Installation
2836

29-
Follow the steps below to install.
30-
31-
1. Change the current directory "/usr/share/elasticsearch".
32-
2. Place the zip file created with "Build" on the moved directory.
33-
3. Command "sudo bin/elasticsearch-plugin install file:///usr/share/elasticsearch/<zipfile-name>"
34-
4. Place files [system_core.dic or system_full.dic] under ES_HOME/sudachi.
37+
1. Download analysis-sudachi-elasticsearch zip archive file
38+
2. Move current dir to $ES_HOME
39+
3. Execute "bin/elasticsearch-plugin install file:///<plugin-zip-path>"
40+
4. Download sudachi dictionary archive from https://github.com/WorksApplications/SudachiDict
41+
5. Extract dic file and place it to config/sudachi_tokenizer/system_core.dic
42+
6. Execute "bin/elasticsearch"
3543

3644
# Configuration
3745

@@ -425,25 +433,8 @@ Returns `スシ`.
425433
```
426434
Returns `susi`.
427435

428-
# Releases
429-
430-
**1.1.0**
431-
- POS Filter: Allow forward matching; https://github.com/WorksApplications/elasticsearch-sudachi/issues/21
432-
433-
**1.0.3**
434-
- Elasticsearch 6.1 API migration
435-
436-
**1.0.2**
437-
- Elasticsearch 6.0 API migration
438-
439-
**1.0.1**
440-
- fix exception over 512 characters
441-
442-
**1.0.0**
443-
- first release
444-
445436
# License
446437

447-
Copyright (c) 2017 Works Applications Co., Ltd.
438+
Copyright (c) 2017-2019 Works Applications Co., Ltd.
448439
Originally under elasticsearch, https://www.elastic.co/jp/products/elasticsearch
449440
Originally under lucene, https://lucene.apache.org/

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.worksap.nlp</groupId>
66
<artifactId>analysis-sudachi-elasticsearch6.7</artifactId>
7-
<version>1.2.0-SNAPSHOT</version>
7+
<version>1.3.0</version>
88
<packaging>jar</packaging>
99

1010
<name>analysis-sudachi</name>
@@ -14,7 +14,7 @@
1414
<java.version>1.8</java.version>
1515
<elasticsearch.version>6.7.0</elasticsearch.version>
1616
<lucene.version>7.7.0</lucene.version>
17-
<sudachi.version>0.1.2-SNAPSHOT</sudachi.version>
17+
<sudachi.version>0.2.0</sudachi.version>
1818
<jacoco.skip>true</jacoco.skip>
1919
<sonar.skip>true</sonar.skip>
2020
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
@@ -155,7 +155,7 @@
155155
</plugins>
156156
</build>
157157
<dependencies>
158-
<!-- Sudachi -->
158+
<!-- https://mvnrepository.com/artifact/com.worksap.nlp/sudachi -->
159159
<dependency>
160160
<groupId>com.worksap.nlp</groupId>
161161
<artifactId>sudachi</artifactId>

0 commit comments

Comments
 (0)