jupyterhub / chartpress

automate building and publishing images for helm charts
BSD 3-Clause "New" or "Revised" License
55 stars 24 forks source link

Autoincrement base version from tag if not specified #230

Closed manics closed 9 months ago

manics commented 9 months ago

Currently Chartpress defaults to using the last existing tag with a dev suffix, but with semver this means it's older than the last tag.

This new option means the base version can be automatically inferred by incrementing the specified component (major/minor/patch) of the last tag, meaning it's no longer necessary to set base-version to the next tag.

https://github.com/yuvipanda/cryptnono/pull/12

The default behaviour is unchanged, though arguably we could default to patch?

manics commented 9 months ago

Thanks for reviewing! I've updated this with your feedback.