Uh oh!
There was an error while loading. Please reload this page.
chore(protobuf-4.x-rc): release 1.76.0-rc1 - #11842
Merged
diegomarquezp merged 6 commits intoDec 18, 2025
Merged
Conversation
ContributorAuthor
Created using the following script that confirms that every snapshot version was a minor bump of the previously released version: defmain() ->None:
versions=defaultdict(dict)
withopen('versions.txt') asfile:
skip=0forlineinfile:
ifskip<3:
skip+=1continuemodule, released_version, current_version=line.rstrip().split(':')
released_major=int(released_version.split('.')[0])
current_major=int(current_version.split('.')[0])
released_minor=int(released_version.split('.')[1])
current_minor=int(current_version.split('.')[1])
current_patch=current_version.split('.')[2]
assertcurrent_minor==released_minor+1, line.rstrip()
assertcurrent_major==released_major, line.rstrip()
assertcurrent_patch=='0-SNAPSHOT'orcurrent_patch=='0-beta-SNAPSHOT', line.rstrip()After that I modified all poms and the 4 READMES from this query to remove snapshot from the versions where there is a defmain() ->None:
forfiletypein ['poms']:
withopen('poms') asfile:
forentryin [line.rstrip() forlineinfile]:
process_file(entry)
defprocess_file(file):
modified=Falserf=open(file)
wf=open(file+'.new', 'w')
forlineinrf:
if'x-version-update:'inline:
line=line.replace('-SNAPSHOT', '-rc1')
modified=Truewf.write(line)
rf.close()
wf.close()
ifmodified:
subprocess.run(['rm', file])
subprocess.run(['mv', file+'.new', file])
else:
subprocess.run(['rm', file+'.new'])Lastly, looking at #11838 I modified CHANGELOG.md, versions.txt and .release-please-manifest.json |
diegomarquezp
marked this pull request as ready for review
December 18, 2025 16:05
blakeli0
approved these changes
Dec 18, 2025
Uh oh!
There was an error while loading. Please reload this page.
Contributor
🤖 Created releases: 🌻 |
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 freeto 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.
🤖 I have created a release beepboop
1.76.0-rc1
1.76.0-rc1 (2025-12-17)
Features
Dependencies