Skip to content

Commit 4faa66b

Browse files
committed
release: v0.9.3
1 parent dceac63 commit 4faa66b

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ Iterable<MyDoc> allMatches = repository.findAll(example);
409409
</dependency>
410410
```
411411

412-
> ⚠️ Redis OM Spring versions greater than `v0.9.2` require the addition
412+
> ⚠️ Redis OM Spring versions greater than `v0.9.2` 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
415415
released we will drop this requirement.
@@ -457,7 +457,7 @@ inherited from the parent poms):
457457
<path>
458458
<groupId>com.redis.om</groupId>
459459
<artifactId>redis-om-spring</artifactId>
460-
<version>0.9.3-SNAPSHOT</version>
460+
<version>0.9.3</version>
461461
</path>
462462
</annotationProcessorPaths>
463463
</configuration>
@@ -504,7 +504,7 @@ repositories {
504504

505505
```groovy
506506
ext {
507-
redisOmVersion = '0.9.3-SNAPSHOT'
507+
redisOmVersion = '0.9.3'
508508
}
509509
510510
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.3-SNAPSHOT</version>
34+
<version>0.9.3</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.3-SNAPSHOT</version>
144+
<version>0.9.3</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.3-SNAPSHOT</version>
33+
<version>0.9.3</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.3-SNAPSHOT</version>
37+
<version>0.9.3</version>
3838
</dependency>
3939

4040
<dependency>

demos/roms-vss/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.3-SNAPSHOT</version>
33+
<version>0.9.3</version>
3434
</dependency>
3535
<dependency>
3636
<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.3-SNAPSHOT</version>
9+
<version>0.9.3</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.3-SNAPSHOT</version>
10+
<version>0.9.3</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
@@ -12,7 +12,7 @@
1212
prefix = "redis.om.spring", ignoreInvalidFields = true
1313
)
1414
public class RedisOMProperties {
15-
public static final String ROMS_VERSION = "0.9.3-SNAPSHOT";
15+
public static final String ROMS_VERSION = "0.9.3";
1616
public static final int MAX_SEARCH_RESULTS = 10000;
1717
public static final double DEFAULT_DISTANCE = 0.0005;
1818
public static final Metrics DEFAULT_DISTANCE_METRIC = Metrics.MILES;

0 commit comments

Comments
 (0)