Skip to content

Commit 11277d8

Browse files
committed
release: bump to version 0.12.1
1 parent 984985c commit 11277d8

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ Add RedisVL to your Java (17+) project using Maven or Gradle:
4949
<dependency>
5050
<groupId>com.redis</groupId>
5151
<artifactId>redisvl</artifactId>
52-
<version>0.12.0</version>
52+
<version>0.12.1</version>
5353
</dependency>
5454
```
5555

5656
**Gradle:**
5757

5858
```gradle
59-
implementation 'com.redis:redisvl:0.12.0'
59+
implementation 'com.redis:redisvl:0.12.1'
6060
```
6161

6262
## Setting up Redis

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ tasks.wrapper {
148148
// Task to copy jar to notebooks directory for Jupyter
149149
tasks.register<Copy>("copyJarToNotebooks") {
150150
dependsOn(":core:jar")
151-
from("core/build/libs/redisvl-0.12.0.jar")
151+
from("core/build/libs/redisvl-0.12.1.jar")
152152
into("notebooks")
153153
}
154154

demos/blog-demo/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "com.redis.vl.demos"
7-
version = "0.12.0"
7+
version = "0.12.1"
88

99
repositories {
1010
mavenCentral()

demos/rag-multimodal/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = "com.redis.vl.demo"
8-
version = "0.12.0"
8+
version = "0.12.1"
99

1010
java {
1111
sourceCompatibility = JavaVersion.VERSION_21

docs/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = 0.12.0
1+
version = 0.12.1

notebooks/jupyter/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN chmod +x gradlew && ./gradlew clean build publishToMavenLocal -x test
3636
WORKDIR /home/jovyan/java
3737

3838
# Copy the built JAR to a known location (excluding javadoc and sources JARs)
39-
RUN cp /home/jovyan/redisvl-src/core/build/libs/redisvl-0.12.0.jar /home/jovyan/java/redisvl-core.jar
39+
RUN cp /home/jovyan/redisvl-src/core/build/libs/redisvl-0.12.1.jar /home/jovyan/java/redisvl-core.jar
4040

4141
# Download all dependencies including Jedis and its transitive dependencies
4242
RUN mvn dependency:copy-dependencies -DoutputDirectory=./lib

0 commit comments

Comments
 (0)