-
Notifications
You must be signed in to change notification settings - Fork 999
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(ci): ensure exactly one version bump #5804
base: master
Are you sure you want to change the base?
Conversation
(Doing a couple of test commits now to see if the CI catches wrong version bumps; will drop these commits later) |
2903528
to
5bccb0b
Compare
Ahh it seems like for some packages there hasn't been a git tag created last time they were released. E.g. Unfortunately this breaks the CI check, since the check is using git tags so see what the latest released version is. Unless there is an alternative idea to solve this I think the PR has to wait until the next release. |
Hi Elena, can't we create those tags? Should be easy to find which commits match the releases. |
a915f5d
to
37c24e7
Compare
So the CI (
It still feels a bit messy (well, it's bash....), but I wasn't able to come up with a better solution that checks all of the above criteria. Again, alternative suggestions are welcome. |
Description
Check in CI that the version of a crate has been bumped exactly once since the last release.
Based on discussion in #5781.
Notes & open questions
Current solution feels a bit hacky. Does anyone know a better way to solve this?
Change checklist