Skip to content

Commit

Permalink
release: v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bsbodden committed Jun 23, 2024
1 parent dceac63 commit 4faa66b
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ Iterable<MyDoc> allMatches = repository.findAll(example);
</dependency>
```

> ⚠️ Redis OM Spring versions greater than `v0.9.2` require the addition
> ⚠️ Redis OM Spring versions greater than `v0.9.2` require the addition
of the [**Spring Milestone Repository**](https://repo.spring.io/milestone) to account
for the recent integration with the [**Spring AI**](https://docs.spring.io/spring-ai/reference/) project. When Spring AI `v1.0.0` is
released we will drop this requirement.
Expand Down Expand Up @@ -457,7 +457,7 @@ inherited from the parent poms):
<path>
<groupId>com.redis.om</groupId>
<artifactId>redis-om-spring</artifactId>
<version>0.9.3-SNAPSHOT</version>
<version>0.9.3</version>
</path>
</annotationProcessorPaths>
</configuration>
Expand Down Expand Up @@ -504,7 +504,7 @@ repositories {

```groovy
ext {
redisOmVersion = '0.9.3-SNAPSHOT'
redisOmVersion = '0.9.3'
}
dependencies {
Expand Down
4 changes: 2 additions & 2 deletions demos/roms-documents/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<dependency>
<groupId>com.redis.om</groupId>
<artifactId>redis-om-spring</artifactId>
<version>0.9.3-SNAPSHOT</version>
<version>0.9.3</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -141,7 +141,7 @@
<path>
<groupId>com.redis.om</groupId>
<artifactId>redis-om-spring</artifactId>
<version>0.9.3-SNAPSHOT</version>
<version>0.9.3</version>
</path>
</annotationProcessorPaths>
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion demos/roms-hashes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<dependency>
<groupId>com.redis.om</groupId>
<artifactId>redis-om-spring</artifactId>
<version>0.9.3-SNAPSHOT</version>
<version>0.9.3</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
2 changes: 1 addition & 1 deletion demos/roms-permits/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>com.redis.om</groupId>
<artifactId>redis-om-spring</artifactId>
<version>0.9.3-SNAPSHOT</version>
<version>0.9.3</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion demos/roms-vss/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<dependency>
<groupId>com.redis.om</groupId>
<artifactId>redis-om-spring</artifactId>
<version>0.9.3-SNAPSHOT</version>
<version>0.9.3</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.redis.om</groupId>
<artifactId>redis-om-spring-parent</artifactId>
<version>0.9.3-SNAPSHOT</version>
<version>0.9.3</version>
<name>redis-om-spring-parent</name>
<packaging>pom</packaging>

Expand Down
2 changes: 1 addition & 1 deletion redis-om-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>com.redis.om</groupId>
<artifactId>redis-om-spring</artifactId>
<version>0.9.3-SNAPSHOT</version>
<version>0.9.3</version>
<packaging>jar</packaging>

<name>redis-om-spring</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
prefix = "redis.om.spring", ignoreInvalidFields = true
)
public class RedisOMProperties {
public static final String ROMS_VERSION = "0.9.3-SNAPSHOT";
public static final String ROMS_VERSION = "0.9.3";
public static final int MAX_SEARCH_RESULTS = 10000;
public static final double DEFAULT_DISTANCE = 0.0005;
public static final Metrics DEFAULT_DISTANCE_METRIC = Metrics.MILES;
Expand Down

0 comments on commit 4faa66b

Please sign in to comment.