Skip to content

Commit b1c2509

Browse files
committed
release: v0.9.9
1 parent a7c7d0f commit b1c2509

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ Iterable<MyDoc> allMatches = repository.findAll(example);
408408
<version>${version}</version>
409409
</dependency>
410410
```
411-
> Check below if using Redis OM Spring version greater than `0.9.9-SNAPSHOT`
411+
> Check below if using Redis OM Spring version greater than `0.9.9`
412412
> ⚠️ Redis OM Spring versions greater than `v0.9.1` require the addition
413413
of the [**Spring Milestone Repository**](https://repo.spring.io/milestone) to account
414414
for the recent integration with the [**Spring AI**](https://docs.spring.io/spring-ai/reference/) project. When Spring AI `v1.0.0` is
@@ -430,7 +430,7 @@ repositories {
430430
}
431431
```
432432

433-
> ⚠️ Redis OM Spring versions greater than `v0.9.9-SNAPSHOT` made OPTIONAL the addition
433+
> ⚠️ Redis OM Spring versions greater than `v0.9.9` made OPTIONAL the addition
434434
of the [**Spring Milestone Repository**](https://repo.spring.io/milestone) to account
435435
for the recent integration with the [**Spring AI**](https://docs.spring.io/spring-ai/reference/) project. When Spring AI `v1.0.0` is
436436
released we will drop this requirement. If you want to opt-in for Vector Similarity Search features, you need to manually add the dependencies below. Check the VSS demo for
@@ -535,7 +535,7 @@ inherited from the parent poms):
535535
<path>
536536
<groupId>com.redis.om</groupId>
537537
<artifactId>redis-om-spring</artifactId>
538-
<version>0.9.9-SNAPSHOT</version>
538+
<version>0.9.9</version>
539539
</path>
540540
</annotationProcessorPaths>
541541
</configuration>
@@ -582,7 +582,7 @@ repositories {
582582

583583
```groovy
584584
ext {
585-
redisOmVersion = '0.9.9-SNAPSHOT'
585+
redisOmVersion = '0.9.9'
586586
}
587587
588588
dependencies {

demos/roms-documents/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<dependency>
3232
<groupId>com.redis.om</groupId>
3333
<artifactId>redis-om-spring</artifactId>
34-
<version>0.9.9-SNAPSHOT</version>
34+
<version>0.9.9</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>org.springframework.boot</groupId>
@@ -141,7 +141,7 @@
141141
<path>
142142
<groupId>com.redis.om</groupId>
143143
<artifactId>redis-om-spring</artifactId>
144-
<version>0.9.9-SNAPSHOT</version>
144+
<version>0.9.9</version>
145145
</path>
146146
</annotationProcessorPaths>
147147
</configuration>

demos/roms-hashes/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>com.redis.om</groupId>
3232
<artifactId>redis-om-spring</artifactId>
33-
<version>0.9.9-SNAPSHOT</version>
33+
<version>0.9.9</version>
3434
</dependency>
3535
<dependency>
3636
<groupId>org.springframework.boot</groupId>

demos/roms-permits/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<dependency>
3535
<groupId>com.redis.om</groupId>
3636
<artifactId>redis-om-spring</artifactId>
37-
<version>0.9.9-SNAPSHOT</version>
37+
<version>0.9.9</version>
3838
</dependency>
3939

4040
<dependency>

demos/roms-vss/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>com.redis.om</groupId>
5656
<artifactId>redis-om-spring</artifactId>
57-
<version>0.9.9-SNAPSHOT</version>
57+
<version>0.9.9</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>org.springframework.boot</groupId>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>com.redis.om</groupId>
88
<artifactId>redis-om-spring-parent</artifactId>
9-
<version>0.9.9-SNAPSHOT</version>
9+
<version>0.9.9</version>
1010
<name>redis-om-spring-parent</name>
1111
<packaging>pom</packaging>
1212

redis-om-spring/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>com.redis.om</groupId>
99
<artifactId>redis-om-spring</artifactId>
10-
<version>0.9.9-SNAPSHOT</version>
10+
<version>0.9.9</version>
1111
<packaging>jar</packaging>
1212

1313
<name>redis-om-spring</name>

redis-om-spring/src/main/java/com/redis/om/spring/RedisOMProperties.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
prefix = "redis.om.spring", ignoreInvalidFields = true
1111
)
1212
public class RedisOMProperties {
13-
public static final String ROMS_VERSION = "0.9.9-SNAPSHOT";
13+
public static final String ROMS_VERSION = "0.9.9";
1414
public static final int MAX_SEARCH_RESULTS = 10000;
1515
public static final double DEFAULT_DISTANCE = 0.0005;
1616
public static final Metrics DEFAULT_DISTANCE_METRIC = Metrics.MILES;

0 commit comments

Comments
 (0)