Skip to content

Release version 5.0.0#126

Merged
bernardladenthin merged 1 commit into
mainfrom
claude/release-maven-central-2fXjN
May 11, 2026
Merged

Release version 5.0.0#126
bernardladenthin merged 1 commit into
mainfrom
claude/release-maven-central-2fXjN

Conversation

@bernardladenthin
Copy link
Copy Markdown
Owner

Summary

This release prepares the llama library for version 5.0.0 by removing the SNAPSHOT suffix from version identifiers.

Changes

  • Updated version from 5.0.0-SNAPSHOT to 5.0.0 in pom.xml
  • Updated version from 5.0.0-SNAPSHOT to 5.0.0 in README.md Maven dependency documentation

Details

This is a standard release cut that transitions the project from development/snapshot status to a stable release version. The version is now ready for publication to Maven Central Repository.

https://claude.ai/code/session_01UpoSZ4ZknnF7G5vctxM4ac

@bernardladenthin bernardladenthin merged commit 3e27ebe into main May 11, 2026
2 of 13 checks passed
@bernardladenthin bernardladenthin deleted the claude/release-maven-central-2fXjN branch May 11, 2026 16:03
@claude
Copy link
Copy Markdown

claude Bot commented May 11, 2026

Review Summary

This PR is a minimal version bump from 5.0.0-SNAPSHOT to 5.0.0. The code changes are correct and consistent.

✅ What's Good

  • Consistency: Both pom.xml and README.md are updated with the same version
  • Correctness: Clean version change with no syntax errors
  • Minimal scope: Focused change appropriate for a release commit

⚠️ Release Process Incomplete

The PR removes the -SNAPSHOT suffix, but the publish workflow requires additional steps. The publish-release job in .github/workflows/publish.yml only triggers on:

  1. A git tag matching refs/tags/v* (e.g., v5.0.0), OR
  2. Manual workflow dispatch with release_to_maven_central=true

Next step required:

  • Create and push git tag: git tag v5.0.0 && git push origin v5.0.0
  • This will automatically trigger the Maven Central release workflow and GitHub release

Recommendation

✅ Code changes are correct. Complete the release by creating the v5.0.0 git tag.

Comment thread pom.xml
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This version change is correct. Ensure the corresponding v5.0.0 git tag is created and pushed to trigger the publish-release workflow in .github/workflows/publish.yml.

Comment thread README.md
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Documentation version is now correctly updated to the stable 5.0.0 release. After merging, create a git tag (git tag v5.0.0 && git push origin v5.0.0) to complete the release process and publish to Maven Central.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants