Skip to content

Commit 56ad133

Browse files
committed
Release for Elasticsearch 8.18.1
Signed-off-by: Ronny Trommer <[email protected]>
1 parent cd337f9 commit 56ad133

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/drift-plugin-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
es_version:
14-
- 8.18.0
14+
- 8.18.1
1515
runs-on: ubuntu-latest
1616
container:
1717
image: quay.io/bluebird/java-builder:ubuntu.0.1.5.jdk-17.b21

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
SHELL := /bin/bash -o nounset -o pipefail -o errexit
44
MAVEN_SETTINGS_XML ?= ""
5-
ES_VERSION := 8.18.0
5+
ES_VERSION := 8.18.1
66
ROOT_CHECK := $(shell if [ "$$(id -u)" = "0" ]; then echo "root"; else echo "not_root"; fi)
77
PACKAGE_PROFILE ?= build.fpm.usr.local
88
PACKAGE_VERSION ?= 0

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ sudo dnf install elasticsearch-drift-plugin
3232
```
3333

3434
> [!TIP]
35-
> You can install a specific version using -x.y.z, e.g. elasticsearch-drift-plugin-8.18.0
35+
> You can install a specific version using -x.y.z, e.g. elasticsearch-drift-plugin-8.18.1
3636
3737
### Debian
3838

@@ -47,7 +47,7 @@ sudo apt install elasticsearch-drift-plugin
4747
```
4848

4949
> [!TIP]
50-
> You can install a specific version using -x.y.z, e.g. elasticsearch-drift-plugin=8.18.0
50+
> You can install a specific version using -x.y.z, e.g. elasticsearch-drift-plugin=8.18.1
5151
>
5252
## Use Case
5353

@@ -203,13 +203,13 @@ The ES_VERSION needs to match your pom build dependency version to indicate user
203203
The package version is just a increasing number which identifies the package version release.
204204

205205
```bash
206-
make ES_VERSION=8.18.0 PACKAGE_VERSION=0 packages
206+
make ES_VERSION=8.18.1 PACKAGE_VERSION=0 packages
207207

208208
```
209209
Next, ensure set up an Elasticsearch instance using the same version that is defined in the `pom.xml`.
210210
The version must match exactly, otherwise Elasticsearch will refuse to start.
211211

212212
Install the plugin using:
213213
```
214-
/usr/share/elasticsearch/bin/elasticsearch-plugin install file:///path/to/elasticsearch-drift/plugin/target/releases/elasticsearch-drift-plugin-8.18.02-2.1.0.zip
214+
/usr/share/elasticsearch/bin/elasticsearch-plugin install file:///path/to/elasticsearch-drift/plugin/target/releases/elasticsearch-drift-plugin-8.18.12-2.1.0.zip
215215
```

0 commit comments

Comments
 (0)