Skip to content

Commit 7f22d3e

Browse files
committed
chore: pre-release 1.0.0-RC4
1 parent 812487e commit 7f22d3e

File tree

5 files changed

+15
-24
lines changed

5 files changed

+15
-24
lines changed

README.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Redis OM Spring follows an **N-2 support policy** for Spring Boot versions:
105105
- We support the current version and two previous minor versions that are still receiving OSS updates
106106
- We upgrade Spring Boot with each Redis OM Spring release
107107

108-
For example, as of Redis OM Spring 1.0.0-RC3 (July 2025):
108+
For example, as of Redis OM Spring 1.0.0-RC4:
109109
- **Built with**: Spring Boot 3.4.5
110110
- **Minimum supported**: Spring Boot 3.3.x
111111
- **Recommended**: Spring Boot 3.4.x or 3.5.x
@@ -441,18 +441,7 @@ Iterable<MyDoc> allMatches = repository.findAll(example);
441441

442442
#### Release Process
443443

444-
To release a new version of Redis OM Spring:
445-
446-
1. Ensure all changes are committed and pushed to the main branch
447-
2. Run the release preparation script: `./scripts/prepare-release.sh <version>`
448-
3. Create a new GitHub release with the tag `v<version>`
449-
(e.g., `v0.6.0`)
450-
4. The GitHub workflow will automatically:
451-
- Build the project
452-
- Generate artifacts
453-
- Sign the artifacts with GPG
454-
- Publish to Maven Central
455-
444+
To release a new version of Redis OM Spring follow `docs/release_process.md`.
456445
This process publishes both `redis-om-spring` and `redis-om-spring-ai` modules to Maven Central.
457446

458447
> ⚠️ Starting from version `v1.0.0-RC.1`, Redis OM Spring has been divided into two separate modules:

docs/content/modules/ROOT/pages/setup.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ To use SNAPSHOT releases, add the snapshots repository to your `pom.xml`:
146146
<dependency>
147147
<groupId>com.redis.om</groupId>
148148
<artifactId>redis-om-spring</artifactId>
149-
<version>1.0.0-RC3-SNAPSHOT</version>
149+
<version>1.0.0-RC4-SNAPSHOT</version>
150150
</dependency>
151151
----
152152

@@ -164,7 +164,7 @@ dependencies {
164164
// Core Redis OM Spring
165165
implementation "com.redis.om:redis-om-spring:${redisOmVersion}"
166166
annotationProcessor "com.redis.om:redis-om-spring:${redisOmVersion}"
167-
167+
168168
// Optional: AI module for vector embeddings
169169
implementation "com.redis.om:redis-om-spring-ai:${redisOmVersion}"
170170
}
@@ -217,7 +217,7 @@ repositories {
217217
}
218218
219219
ext {
220-
redisOmVersion = '1.0.0-RC3-SNAPSHOT'
220+
redisOmVersion = '1.0.0-RC4-SNAPSHOT'
221221
}
222222
----
223223

@@ -324,7 +324,7 @@ public class MyApplication {
324324

325325
*Symptom*: Compilation errors referring to missing classes with `$` suffix (e.g., `Person$`).
326326

327-
*Solution*:
327+
*Solution*:
328328

329329
For Maven:
330330
1. Ensure the `maven-compiler-plugin` is configured with the Redis OM Spring annotation processor
@@ -340,7 +340,7 @@ For Gradle:
340340

341341
*Symptom*: `Connection refused` errors when starting the application.
342342

343-
*Solution*:
343+
*Solution*:
344344
1. Verify Redis is running: `docker ps` or `redis-cli ping`
345345
2. Check connection properties in `application.properties` or `application.yaml`
346346
3. Ensure firewalls allow connections to Redis port (default: 6379)

docs/content/modules/ROOT/pages/version-requirements.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ Redis OM Spring follows an **N-2 support policy** for Spring Boot versions:
5858

5959
=== Example
6060

61-
As of Redis OM Spring 1.0.0-RC3 (July 2025):
61+
As of Redis OM Spring 1.0.0-RC4 (August 2025):
6262

63-
* **Built with**: Spring Boot 3.4.5
63+
* **Built with**: Spring Boot 3.4.8
6464
* **Minimum supported**: Spring Boot 3.3.x (OSS support until June 2025)
6565
* **Recommended**: Spring Boot 3.4.x or 3.5.x
6666

@@ -147,7 +147,7 @@ When using Redis OM Spring, ensure your dependencies are aligned:
147147
----
148148
<properties>
149149
<spring-boot.version>3.4.5</spring-boot.version>
150-
<redis-om-spring.version>1.0.0-RC3</redis-om-spring.version>
150+
<redis-om-spring.version>1.0.0-RC4</redis-om-spring.version>
151151
</properties>
152152
153153
<dependencies>

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
version = 1.0.0-RC3
1+
version = 1.0.0-RC4
22

33
group = com.redis.om
44
description = Redis OM Spring provides powerful repository and custom object-mapping abstractions built on top of the powerful Spring Data Redis (SDR) framework.
55

6-
springBootVersion = 3.4.5
6+
springBootVersion = 3.4.8
77
springDependencyVersion = 1.1.7
88

99
testcontainersRedisVersion = 2.2.4
1010
sdrVersion = 3.4.5
1111
jedisVersion = 5.2.0
1212
cdi = 2.0-PFD
1313
autoServiceVersion = 1.1.1
14-
guavaVersion = 33.1.0-jre
14+
guavaVersion = 33.4.8-jre
1515
ulidVersion = 5.2.3
1616
javapoetVersion = 1.13.0
1717
elementaryVersion = 2.0.1

jreleaser.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ project:
66
homepage: https://github.com/redis/redis-om-spring
77
authors:
88
- Brian Sam-Bodden
9+
- Raphael De Lio
10+
- Luigi Fugaro
911
license: MIT
1012
languages:
1113
java:

0 commit comments

Comments
 (0)