feat(java): support release candidates in java#2622
Open
diegomarquezp wants to merge 4 commits intomainfrom
Open
feat(java): support release candidates in java#2622diegomarquezp wants to merge 4 commits intomainfrom
diegomarquezp wants to merge 4 commits intomainfrom
Conversation
Active only when we have a prerelease suffix (-rc). By default, after releasing a library versioned as X.Y.Z-rc(n), a snapshot PR will set it to X.Y.Z-rc(n+1)-SNAPSHOT. When determining the next release, the version may be reset from `rc(m)` to `rc1` if: - a minor bump is determined for next release - a major bump is determined for next release Otherwise, the `-SNAPSHOT` string will simply be removed. NOTE: This is not compatible with ServicePack versioning.
diegomarquezp
added a commit
to googleapis/java-shared-config
that referenced
this pull request
Nov 22, 2025
This repo has a small blast radius for release testing. We aim to test the rc`n` versioning schema soon to be provided by googleapis/release-please#2622. Additionally, we test with `prerelease` to understand its behavior.
diegomarquezp
added a commit
to googleapis/java-shared-config
that referenced
this pull request
Nov 25, 2025
* test: set up test releaase candidate branches This repo has a small blast radius for release testing. We aim to test the rc`n` versioning schema soon to be provided by googleapis/release-please#2622. Additionally, we test with `prerelease` to understand its behavior. * chore: use prerelease mode only Removed prerelease settings and adjusted branch for release. * chore: use base flags
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Active only when we have a prerelease suffix (-rc).
By default, after releasing a library versioned as X.Y.Z-rc(n),
a snapshot PR will set it to X.Y.Z-rc(n+1)-SNAPSHOT.
When determining the next release, the version may be
reset from
rc(m)torc1if:Otherwise, the
-SNAPSHOTstring will simply be removed.NOTE: This is not compatible with ServicePack versioning.