@@ -14,7 +14,7 @@ and we'll deal with the rest.
14
14
Development model
15
15
-----------------
16
16
17
- python-for-android is developed using the following model::
17
+ python-for-android is developed using the following model:
18
18
19
19
- The ``master `` branch always represents the latest stable release.
20
20
- The ``develop `` branch is the most up to date with new contributions.
@@ -44,20 +44,24 @@ Creating a new release
44
44
45
45
New releases follow these steps:
46
46
47
- - Create a new branch ``release/ YYYY.MM.DD `` based on the ``develop `` branch.
48
- - ``git checkout -b release/ YYYY.MM.DD develop ``
49
- - Create a Github pull request to merge ``release/ YYYY.MM.DD `` into ``master ``.
47
+ - Create a new branch ``release- YYYY.MM.DD `` based on the ``develop `` branch.
48
+ - ``git checkout -b release- YYYY.MM.DD develop ``
49
+ - Create a Github pull request to merge ``release- YYYY.MM.DD `` into ``master ``.
50
50
- Complete all steps in the `release checklist <release_checklist _>`_,
51
51
and document this in the pull request (copy the checklist into the PR text)
52
52
53
53
At this point, wait for reviewer approval and conclude any discussion that arises. To complete the release:
54
54
55
55
- Merge the release branch to the ``master `` branch.
56
56
- Also merge the release branch to the ``develop `` branch.
57
- - Tag the release commit in ``master ``. Include a short summary of the changes.
58
- - Create the release distributions: ``python3 setup.py sdist ``
57
+ - Tag the release commit in ``master ``, with tag `` vYYYY.MM.DD `` . Include a short summary of the changes.
58
+ - Create the release distributions: ``python3 setup.py sdist bdist_wheel ``
59
59
- Upload the release to pypi: ``python3 -m twine upload ``.
60
- - Upload the release ``.tar.gz `` to the Github tag.
60
+ - Add to the Github release page (see e.g. `this example <https://github.com/kivy/python-for-android/releases/tag/v2019.06.06 >`__):
61
+ - The python-for-android README summary
62
+ - A short list of major changes in this release, if any
63
+ - A changelog summarising merge commits since the last release
64
+ - The release sdist and wheel(s)
61
65
62
66
.. _release_checklist :
63
67
0 commit comments