Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ Add RedisVL to your Java (17+) project using Maven or Gradle:
<dependency>
<groupId>com.redis</groupId>
<artifactId>redisvl</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</dependency>
```

**Gradle:**

```gradle
implementation 'com.redis:redisvl:0.12.0'
implementation 'com.redis:redisvl:0.12.1'
```

## Setting up Redis
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ tasks.wrapper {
// Task to copy jar to notebooks directory for Jupyter
tasks.register<Copy>("copyJarToNotebooks") {
dependsOn(":core:jar")
from("core/build/libs/redisvl-0.12.0.jar")
from("core/build/libs/redisvl-0.12.1.jar")
into("notebooks")
}

Expand Down
2 changes: 1 addition & 1 deletion demos/blog-demo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "com.redis.vl.demos"
version = "0.12.0"
version = "0.12.1"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion demos/rag-multimodal/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "com.redis.vl.demo"
version = "0.12.0"
version = "0.12.1"

java {
sourceCompatibility = JavaVersion.VERSION_21
Expand Down
2 changes: 1 addition & 1 deletion docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = 0.12.0
version = 0.12.1
2 changes: 1 addition & 1 deletion notebooks/jupyter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN chmod +x gradlew && ./gradlew clean build publishToMavenLocal -x test
WORKDIR /home/jovyan/java

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

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