-
Notifications
You must be signed in to change notification settings - Fork 10
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 : Enable custom version release #252
Conversation
@@ -57,7 +58,7 @@ def bump_version( | |||
) | |||
|
|||
updated_versions: dict[str, str] = self._bump_versions( | |||
current_versions, bump_type | |||
current_versions, bump_type, custom_version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Minor)
Not ideal argument namings with combined current_versions: dict[str,str]
and current_version: str
, requires the reader/maintainer to look it up first.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Context
Allows providing a custom version while releasing a new version of the library.
Feature Scope
Definition of Done
[ ] Feature scope is documented[ ] Release notes are created