From 7b27f1b956d5418167080e6e1bdc6471239b2974 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 8 Jun 2026 11:30:46 +0000 Subject: [PATCH 1/2] Post-release: bump to 5.0.3-SNAPSHOT Per docs/RELEASE.md step 3 (post-release snapshot bump): pom.xml -> 5.0.3-SNAPSHOT and README snapshot dependency example -> 5.0.3-SNAPSHOT. README release dependency examples stay at the just-released 5.0.2. Restores the -SNAPSHOT version on main so the publish-snapshot job resumes deploying to the Sonatype snapshot repository after the v5.0.2 release. --- README.md | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 040e595a..19de5f25 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ To use the latest snapshot, add the repository and dependency to your `pom.xml`: net.ladenthin llama - 5.0.2-SNAPSHOT + 5.0.3-SNAPSHOT ``` diff --git a/pom.xml b/pom.xml index 0d613045..9822a60a 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ SPDX-License-Identifier: MIT net.ladenthin llama - 5.0.2 + 5.0.3-SNAPSHOT jar ${project.groupId}:${project.artifactId} From fc040c680f0bd0aab6b45881e2f020877c602150 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 8 Jun 2026 11:34:10 +0000 Subject: [PATCH 2/2] docs(RELEASE): clarify release dep examples stay at {VERSION} in step 3 Step 3 was explicit about bumping the README snapshot dependency example to {NEXT_VERSION}-SNAPSHOT but silent on the README release dependency examples, which should stay at the just-released {VERSION}. Make that implicit rule explicit. --- docs/RELEASE.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/RELEASE.md b/docs/RELEASE.md index c7c3dcbb..b8289acb 100644 --- a/docs/RELEASE.md +++ b/docs/RELEASE.md @@ -23,6 +23,7 @@ the release is published on Maven Central before proceeding. Bump **both** files on `main`: - `pom.xml` → `{NEXT_VERSION}-SNAPSHOT` - `README.md` snapshot dependency example → `{NEXT_VERSION}-SNAPSHOT` + (the release dependency examples stay at the just-released `{VERSION}`) Commit both changes together directly to `main`.