diff --git a/CHANGES.rst b/CHANGES.rst index f535366..ca516fb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changes ======= +unreleased +---------- + +* add development documentation in development.rst + 0.5.1 - 2021-09-04 ------------------ diff --git a/DEVELOPMENT.rst b/DEVELOPMENT.rst new file mode 100644 index 0000000..b250698 --- /dev/null +++ b/DEVELOPMENT.rst @@ -0,0 +1,47 @@ +Development +=========== + +The extension is developed in a git repository that can be cloned by running:: + + git clone https://git.dittberner.info/jan/sphinxext-ip.git + +Running test +------------ + +To install all dependencies and run the tests use:: + + pipenv install --dev + pipenv run pytest + +Release a new version +--------------------- + +Start by deciding the new release number and perform the following steps: + +* update CHANGES.rst +* change ``version`` in setup.cfg +* change ``__version__`` in jandd/sphinxext/ip.rst +* change ``version`` in tests/root/conf.py +* commit and push your changes :: + + git commit -m "Release " + git push + +* create an annotated and signed tag with the new version number (``git + shortlog ..HEAD`` could help to create a good release tag + message) :: + + git tag -s -a 0.5.1 + +* build the release artifacts :: + + rm -rf dist jandd.sphinxext.ip.egg-info + pipenv run python3 setup.py egg_info -b