Skip to content

Commit

Permalink
Dependencies: Upgrade Elasticsearch to 7.17.1 (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriziofortino committed Mar 21, 2022
1 parent d34a477 commit 9df359f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
buildscript {
ext {
esVersion = '7.17.0'
esVersion = '7.17.1'
luceneVersion = '8.11.1'
elastic4sVersion = '7.16.3'
elastic4sVersion = '7.17.1'
circeVersion= '0.14.1'
circeGenericExtrasVersion= '0.14.1'
scalaShortVersion = '2.13'
Expand Down
2 changes: 1 addition & 1 deletion client-python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
elasticsearch==7.17.0
elasticsearch==7.17.1
dataclasses-json==0.3.7
tqdm==4.61.1
scipy==1.7.0
4 changes: 2 additions & 2 deletions docs/pages/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Make a Dockerfile like below. The image version (`elasticsearch:A.B.C`) must mat
`A.B.C` is the Elasticsearch version. `.x` just refers to an incremental version of Elastiknn on top of `A.B.C`.

```docker
FROM docker.elastic.co/elasticsearch/elasticsearch:7.17.0
RUN elasticsearch-plugin install --batch https://github.com/alexklibisz/elastiknn/releases/download/7.17.0.1/elastiknn-7.17.0.1.zip
FROM docker.elastic.co/elasticsearch/elasticsearch:7.17.1
RUN elasticsearch-plugin install --batch https://github.com/alexklibisz/elastiknn/releases/download/7.17.1.0/elastiknn-7.17.1.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)
Expand Down
2 changes: 1 addition & 1 deletion elastiknn-plugin/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM docker.elastic.co/elasticsearch/elasticsearch:7.17.0-amd64
FROM docker.elastic.co/elasticsearch/elasticsearch:7.17.1-amd64
COPY build/distributions/*.zip .
RUN elasticsearch-plugin install -b file:$(ls elastiknn*zip | sort | tail -n1)
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.17.0.1
7.17.1.0

0 comments on commit 9df359f

Please sign in to comment.