- Notifications
You must be signed in to change notification settings - Fork1.1k
chore(protobuf-4.x-rc): release 1.76.0-rc1#11842
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:protobuf-4.x-rc
Are you sure you want to change the base?
chore(protobuf-4.x-rc): release 1.76.0-rc1#11842
Uh oh!
There was an error while loading.Please reload this page.
Conversation
diegomarquezp commentedDec 18, 2025 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
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 fromthis 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 |
Uh oh!
There was an error while loading.Please reload this page.
🤖 I have created a releasebeepboop
1.76.0-rc1
1.76.0-rc1 (2025-12-17)
Features
Dependencies