diff --git a/build.sbt b/build.sbt index f096badb9..a08016036 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ import org.typelevel.scalacoptions.* Global / scalaVersion := "2.13.12" lazy val CirceVersion = "0.14.3" -lazy val ElasticsearchVersion = "8.11.3" +lazy val ElasticsearchVersion = "8.11.4" lazy val Elastic4sVersion = "8.11.5" lazy val ElastiknnVersion = IO.read(file("version")).strip() lazy val LuceneVersion = "9.8.0" diff --git a/docker/Dockerfile b/docker/Dockerfile index 58f0a5b7c..69acaf751 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,3 +1,3 @@ -FROM docker.elastic.co/elasticsearch/elasticsearch:8.11.3 +FROM docker.elastic.co/elasticsearch/elasticsearch:8.11.4 COPY elastiknn-plugin/target/elastiknn*.zip . RUN elasticsearch-plugin install -b file:$(ls elastiknn*zip | sort | tail -n1) diff --git a/docs/pages/installation.md b/docs/pages/installation.md index d6655dca2..cdc5c57d9 100644 --- a/docs/pages/installation.md +++ b/docs/pages/installation.md @@ -42,8 +42,8 @@ Make a Dockerfile like below. The image version (`elasticsearch:A.B.C`) must match the plugin's version (e.g. `A.B.C.x/elastiknn-A.B.C.x`). ```docker -FROM docker.elastic.co/elasticsearch/elasticsearch:8.11.3 -RUN elasticsearch-plugin install --batch https://github.com/alexklibisz/elastiknn/releases/download/8.11.3.0/elastiknn-8.11.3.0.zip +FROM docker.elastic.co/elasticsearch/elasticsearch:8.11.4 +RUN elasticsearch-plugin install --batch https://github.com/alexklibisz/elastiknn/releases/download/8.11.4.0/elastiknn-8.11.4.0.zip ``` Build and run the Dockerfile. If you have any issues please refer to the [official docs.](https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html) diff --git a/version b/version index 92ead6ba0..d5162ab43 100644 --- a/version +++ b/version @@ -1 +1 @@ -8.11.3.0 \ No newline at end of file +8.11.4.0 \ No newline at end of file