-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
406a159
commit b797fdc
Showing
2 changed files
with
21 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
CHANGELOG = 'CHANGELOG.md' | ||
arguments = {} | ||
|
||
def common_arguments(): | ||
""" | ||
Return common arguments | ||
:return: tuple of <app_name>, --dry-run, new_version | ||
""" | ||
version_prefix = arguments['--version-prefix'] | ||
new_version = arguments['new_version'] | ||
|
||
common_arguments = ( | ||
arguments['<app_name>'], | ||
arguments['--dry-run'], | ||
version_prefix + new_version if version_prefix else new_version, | ||
) | ||
return common_arguments |