From 336efd65fc975cb219fa815dd4dab98e9c935de2 Mon Sep 17 00:00:00 2001 From: Alex Klibisz <8015228+alexklibisz@users.noreply.github.com> Date: Mon, 18 Nov 2024 08:10:56 -0800 Subject: [PATCH] Updating version --- build.sbt | 2 +- docker/Dockerfile | 2 +- docs/pages/installation.md | 4 ++-- version | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build.sbt b/build.sbt index d781fe50..b70a2967 100644 --- a/build.sbt +++ b/build.sbt @@ -8,7 +8,7 @@ Global / scalacOptions += "-explain" lazy val CirceVersion = "0.14.10" lazy val ElasticsearchVersion = "8.15.3" -lazy val Elastic4sVersion = "8.15.2" +lazy val Elastic4sVersion = "8.15.3" lazy val ElastiknnVersion = IO.read(file("version")).strip() lazy val LuceneVersion = "9.11.1" diff --git a/docker/Dockerfile b/docker/Dockerfile index c170cdb3..461c3910 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,3 +1,3 @@ -FROM docker.elastic.co/elasticsearch/elasticsearch:8.15.2 +FROM docker.elastic.co/elasticsearch/elasticsearch:8.15.3 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 2be888e9..81cdd7b0 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.15.2 -RUN elasticsearch-plugin install --batch https://github.com/alexklibisz/elastiknn/releases/download/8.15.2.1/elastiknn-8.15.2.1.zip +FROM docker.elastic.co/elasticsearch/elasticsearch:8.15.3 +RUN elasticsearch-plugin install --batch https://github.com/alexklibisz/elastiknn/releases/download/8.15.3.0/elastiknn-8.15.3.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 b2fd7449..c39c6b09 100644 --- a/version +++ b/version @@ -1 +1 @@ -8.15.2.0 \ No newline at end of file +8.15.3.0 \ No newline at end of file