From a0a3b7c486d2d2c00492381a74ef4f1ae46a4a19 Mon Sep 17 00:00:00 2001 From: Brian Sam-Bodden Date: Wed, 23 Oct 2024 15:36:09 -0700 Subject: [PATCH] release: v0.9.7 --- README.md | 4 ++-- 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 +- .../src/main/java/com/redis/om/spring/RedisOMProperties.java | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a1f4103a..7a67b2a1 100644 --- a/README.md +++ b/README.md @@ -457,7 +457,7 @@ inherited from the parent poms): com.redis.om redis-om-spring - 0.9.7-SNAPSHOT + 0.9.7 @@ -504,7 +504,7 @@ repositories { ```groovy ext { - redisOmVersion = '0.9.7-SNAPSHOT' + redisOmVersion = '0.9.7' } dependencies { diff --git a/demos/roms-documents/pom.xml b/demos/roms-documents/pom.xml index bb0ed02a..1b54e61b 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.7-SNAPSHOT + 0.9.7 org.springframework.boot @@ -141,7 +141,7 @@ com.redis.om redis-om-spring - 0.9.7-SNAPSHOT + 0.9.7 diff --git a/demos/roms-hashes/pom.xml b/demos/roms-hashes/pom.xml index 879a86e9..411d357c 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.7-SNAPSHOT + 0.9.7 org.springframework.boot diff --git a/demos/roms-permits/pom.xml b/demos/roms-permits/pom.xml index 24b815a1..ad5aa970 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.7-SNAPSHOT + 0.9.7 diff --git a/demos/roms-vss/pom.xml b/demos/roms-vss/pom.xml index 02c64d84..7d73e5ac 100644 --- a/demos/roms-vss/pom.xml +++ b/demos/roms-vss/pom.xml @@ -30,7 +30,7 @@ com.redis.om redis-om-spring - 0.9.7-SNAPSHOT + 0.9.7 org.springframework.boot diff --git a/pom.xml b/pom.xml index 96bb7517..fb4d352c 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 com.redis.om redis-om-spring-parent - 0.9.7-SNAPSHOT + 0.9.7 redis-om-spring-parent pom diff --git a/redis-om-spring/pom.xml b/redis-om-spring/pom.xml index 355d76d6..39be5704 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.7-SNAPSHOT + 0.9.7 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 cf708699..25f46cf2 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 @@ -12,7 +12,7 @@ prefix = "redis.om.spring", ignoreInvalidFields = true ) public class RedisOMProperties { - public static final String ROMS_VERSION = "0.9.7-SNAPSHOT"; + public static final String ROMS_VERSION = "0.9.7"; 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;