From 6f29486d634bf0aee0d5e3ec555309340f5443fe Mon Sep 17 00:00:00 2001 From: Brian Sam-Bodden Date: Thu, 1 Aug 2024 16:37:43 -0700 Subject: [PATCH] release: 0.9.5-SNAPSHOT --- 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 be38279b..c08e17c6 100644 --- a/README.md +++ b/README.md @@ -457,7 +457,7 @@ inherited from the parent poms): com.redis.om redis-om-spring - 0.9.4 + 0.9.5-SNAPSHOT @@ -504,7 +504,7 @@ repositories { ```groovy ext { - redisOmVersion = '0.9.4' + redisOmVersion = '0.9.5-SNAPSHOT' } dependencies { diff --git a/demos/roms-documents/pom.xml b/demos/roms-documents/pom.xml index 108287d2..2e68dd5d 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.4 + 0.9.5-SNAPSHOT org.springframework.boot @@ -141,7 +141,7 @@ com.redis.om redis-om-spring - 0.9.4 + 0.9.5-SNAPSHOT diff --git a/demos/roms-hashes/pom.xml b/demos/roms-hashes/pom.xml index 52a4a1ed..f1a9b396 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.4 + 0.9.5-SNAPSHOT org.springframework.boot diff --git a/demos/roms-permits/pom.xml b/demos/roms-permits/pom.xml index a95b0762..eddb583c 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.4 + 0.9.5-SNAPSHOT diff --git a/demos/roms-vss/pom.xml b/demos/roms-vss/pom.xml index b61290e8..8ee1643a 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.4 + 0.9.5-SNAPSHOT org.springframework.boot diff --git a/pom.xml b/pom.xml index 0e94ede6..bb597d2c 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 com.redis.om redis-om-spring-parent - 0.9.4 + 0.9.5-SNAPSHOT redis-om-spring-parent pom diff --git a/redis-om-spring/pom.xml b/redis-om-spring/pom.xml index 6fcbcf35..2fddfd89 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.4 + 0.9.5-SNAPSHOT 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 934bca93..cd478a6d 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.4"; + public static final String ROMS_VERSION = "0.9.5-SNAPSHOT"; 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;