1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
GIT:
AUTO_COMMIT: true
AUTO_TAG: true
AUTO_PUSH: true # false=disabled, true=enabled, 'remote_name'=enabled and push to remote_name
COMMIT_MESSAGE: 'New version {version}'
CHANGELOG:
REGEXPS:
'python': __version__\s*=\s*\'(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\'
'setup.py': version\s*=\s*\"(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\"
'PKGBUILD': pkgver\s*=\s*(?P<version>.*)
VERSION_FILES:
'cron_descriptor/__init__.py': 'python'
'setup.py': 'setup.py'
'archlinux/PKGBUILD': 'PKGBUILD'
|