Skip to content

Commit 4484eea

Browse files
committed
release: bump to version 0.12.2
1 parent 06ea26f commit 4484eea

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
sed -i "s/^version\s*=.*/version = ${{ inputs.version }}/" gradle.properties
5656
git add gradle.properties
57-
git commit --allow-empty -m "release: Releasing version ${{ inputs.version }}"
57+
git commit --allow-empty -m "release: publishing version ${{ inputs.version }}"
5858
git push origin HEAD
5959
6060
- name: Build

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.1</version>
52+
<version>0.12.2</version>
5353
</dependency>
5454
```
5555

5656
**Gradle:**
5757

5858
```gradle
59-
implementation 'com.redis:redisvl:0.12.1'
59+
implementation 'com.redis:redisvl:0.12.2'
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.1.jar")
151+
from("core/build/libs/redisvl-0.12.2.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.1"
7+
version = "0.12.2"
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.1"
8+
version = "0.12.2"
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.1
1+
version = 0.12.2

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.1.jar /home/jovyan/java/redisvl-core.jar
39+
RUN cp /home/jovyan/redisvl-src/core/build/libs/redisvl-0.12.2.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)