mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
`\s` will match a space via GNU sed but not the version of sed that ships with Mac OS X or BSD.
32 lines
664 B
Text
32 lines
664 B
Text
[bumpr]
|
|
file = pelican/__init__.py
|
|
vcs = git
|
|
clean =
|
|
python setup.py clean
|
|
rm -rf *egg-info build dist
|
|
tests = python -m unittest discover
|
|
publish = python setup.py sdist bdist_wheel register upload
|
|
files =
|
|
README.rst
|
|
setup.py
|
|
|
|
[bump]
|
|
unsuffix = true
|
|
message = Bump version {version}
|
|
|
|
[prepare]
|
|
part = patch
|
|
suffix = dev
|
|
message = Prepare version {version} for next development cycle
|
|
|
|
[changelog]
|
|
file = docs/changelog.rst
|
|
separator = =
|
|
bump = {version} ({date:%Y-%m-%d})
|
|
prepare = Next release
|
|
|
|
[readthedoc]
|
|
url = http://docs.getpelican.com/{tag}
|
|
|
|
[commands]
|
|
bump = sed -i "" "s/last_stable[[:space:]]*=.*/last_stable = '{version}'/" docs/conf.py
|