Skip to content

release: v0.9.8 #535

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 16, 2025
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ Iterable<MyDoc> allMatches = repository.findAll(example);
<version>${version}</version>
</dependency>
```
> Check below if using Redis OM Spring version greater than `0.9.8-SNAPSHOT`
> Check below if using Redis OM Spring version greater than `0.9.8`
> ⚠️ Redis OM Spring versions greater than `v0.9.1` 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
Expand All @@ -430,7 +430,7 @@ repositories {
}
```

> ⚠️ Redis OM Spring versions greater than `v0.9.8-SNAPSHOT` made OPTIONAL the addition
> ⚠️ Redis OM Spring versions greater than `v0.9.8` made OPTIONAL 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. If you want to opt-in for Vector Similarity Search features, you need to manually add the dependencies below. Check the VSS demo for
Expand Down Expand Up @@ -535,7 +535,7 @@ inherited from the parent poms):
<path>
<groupId>com.redis.om</groupId>
<artifactId>redis-om-spring</artifactId>
<version>0.9.8-SNAPSHOT</version>
<version>0.9.8</version>
</path>
</annotationProcessorPaths>
</configuration>
Expand Down Expand Up @@ -582,7 +582,7 @@ repositories {

```groovy
ext {
redisOmVersion = '0.9.8-SNAPSHOT'
redisOmVersion = '0.9.8'
}

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.8-SNAPSHOT</version>
<version>0.9.8</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.8-SNAPSHOT</version>
<version>0.9.8</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.8-SNAPSHOT</version>
<version>0.9.8</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.8-SNAPSHOT</version>
<version>0.9.8</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 @@ -54,7 +54,7 @@
<dependency>
<groupId>com.redis.om</groupId>
<artifactId>redis-om-spring</artifactId>
<version>0.9.8-SNAPSHOT</version>
<version>0.9.8</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.8-SNAPSHOT</version>
<version>0.9.8</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.8-SNAPSHOT</version>
<version>0.9.8</version>
<packaging>jar</packaging>

<name>redis-om-spring</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
prefix = "redis.om.spring", ignoreInvalidFields = true
)
public class RedisOMProperties {
public static final String ROMS_VERSION = "0.9.8-SNAPSHOT";
public static final String ROMS_VERSION = "0.9.8";
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
Loading