From 221d62fd76dc4aa9453870780f730db8624c8a2c Mon Sep 17 00:00:00 2001 From: Brian Sam-Bodden Date: Wed, 15 Jan 2025 22:30:57 -0700 Subject: [PATCH] release: v0.9.8 --- README.md | 8 ++++---- demos/roms-documents/pom.xml | 4 ++-- demos/roms-hashes/pom.xml | 2 +- demos/roms-permits/pom.xml | 2 +- demos/roms-vss/pom.xml | 2 +- pom.xml | 2 +- redis-om-spring/pom.xml | 2 +- .../main/java/com/redis/om/spring/RedisOMProperties.java | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 995bc005..daf6d8d0 100644 --- a/README.md +++ b/README.md @@ -408,7 +408,7 @@ Iterable allMatches = repository.findAll(example); ${version} ``` -> 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 @@ -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 @@ -535,7 +535,7 @@ inherited from the parent poms): com.redis.om redis-om-spring - 0.9.8-SNAPSHOT + 0.9.8 @@ -582,7 +582,7 @@ repositories { ```groovy ext { - redisOmVersion = '0.9.8-SNAPSHOT' + redisOmVersion = '0.9.8' } dependencies { diff --git a/demos/roms-documents/pom.xml b/demos/roms-documents/pom.xml index f6364454..5e67a572 100644 --- a/demos/roms-documents/pom.xml +++ b/demos/roms-documents/pom.xml @@ -31,7 +31,7 @@ com.redis.om redis-om-spring - 0.9.8-SNAPSHOT + 0.9.8 org.springframework.boot @@ -141,7 +141,7 @@ com.redis.om redis-om-spring - 0.9.8-SNAPSHOT + 0.9.8 diff --git a/demos/roms-hashes/pom.xml b/demos/roms-hashes/pom.xml index f56deee5..9406317b 100644 --- a/demos/roms-hashes/pom.xml +++ b/demos/roms-hashes/pom.xml @@ -30,7 +30,7 @@ com.redis.om redis-om-spring - 0.9.8-SNAPSHOT + 0.9.8 org.springframework.boot diff --git a/demos/roms-permits/pom.xml b/demos/roms-permits/pom.xml index 13328da7..52187e8d 100644 --- a/demos/roms-permits/pom.xml +++ b/demos/roms-permits/pom.xml @@ -34,7 +34,7 @@ com.redis.om redis-om-spring - 0.9.8-SNAPSHOT + 0.9.8 diff --git a/demos/roms-vss/pom.xml b/demos/roms-vss/pom.xml index 509fce28..3bffb67f 100644 --- a/demos/roms-vss/pom.xml +++ b/demos/roms-vss/pom.xml @@ -54,7 +54,7 @@ com.redis.om redis-om-spring - 0.9.8-SNAPSHOT + 0.9.8 org.springframework.boot diff --git a/pom.xml b/pom.xml index 95ce09a4..2f20af1e 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 com.redis.om redis-om-spring-parent - 0.9.8-SNAPSHOT + 0.9.8 redis-om-spring-parent pom diff --git a/redis-om-spring/pom.xml b/redis-om-spring/pom.xml index 9b8890f6..56b370f4 100644 --- a/redis-om-spring/pom.xml +++ b/redis-om-spring/pom.xml @@ -7,7 +7,7 @@ com.redis.om redis-om-spring - 0.9.8-SNAPSHOT + 0.9.8 jar redis-om-spring diff --git a/redis-om-spring/src/main/java/com/redis/om/spring/RedisOMProperties.java b/redis-om-spring/src/main/java/com/redis/om/spring/RedisOMProperties.java index 33e296e5..ad047123 100644 --- a/redis-om-spring/src/main/java/com/redis/om/spring/RedisOMProperties.java +++ b/redis-om-spring/src/main/java/com/redis/om/spring/RedisOMProperties.java @@ -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;