Skip to content

Commit 0e6c3c7

Browse files
committed
README
1 parent d877076 commit 0e6c3c7

File tree

1 file changed

+22
-13
lines changed

1 file changed

+22
-13
lines changed

README.md

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
Various utilities enhancing our Elasticsearch installation.
44

5+
## Release
6+
7+
To create a release, just tag the commit with version number. The built files are available
8+
in the [release](https://github.com/monitora-media/es-utils/releases/latest).
9+
10+
git tag 1.1.0
11+
git push --tags
12+
513
## Build
614

715
./gradlew build -Pelasticsearch.version=8.5.3
@@ -21,20 +29,21 @@ Index settings:
2129

2230
```json
2331
{
24-
"analysis":
25-
"filter": {
26-
"lowercase": {
27-
"type": "monitora_lowercase",
28-
"preserve_original": "true"
29-
}
30-
"analyzer": {
31-
"index": {
32-
"type": "custom",
33-
"filter": [
34-
"lowercase"
35-
]
36-
}
32+
"analysis": {
33+
"filter": {
34+
"lowercase": {
35+
"type": "monitora_lowercase",
36+
"preserve_original": "true"
37+
},
38+
"analyzer": {
39+
"index": {
40+
"type": "custom",
41+
"filter": [
42+
"lowercase"
43+
]
3744
}
45+
}
3846
}
47+
}
3948
}
4049
```

0 commit comments

Comments
 (0)