Skip to content

Commit c758172

Browse files
authoredFeb 4, 2020
Merge pull request #60 from peopledoc/release/1.10
Release/1.10
2 parents 4d47f33 + 5321732 commit c758172

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed
 

‎CHANGELOG

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
1.11 (unreleased)
5+
----------------
6+
7+
1.10 (2020-02-03)
8+
----------------
9+
410
- Add support for Django 2.2 & 3.0
511
- Drop support for Django 1.8, 1.9 & 1.10
612

‎README.rst

+21
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,27 @@ Several form mixins are provided to cover frequent use cases:
106106

107107
See "mixin" documentation for details.
108108

109+
*******
110+
Release
111+
*******
112+
113+
To prepare a new version:
114+
115+
* Create a branch named ``release/<version>``
116+
* In a commit, change the ``CHANGELOG`` and ``VERSION`` file to remove the ``.dev0`` and set the date of the release
117+
* In a second commit, change the ``VERSION`` to the next version number + ``.dev0``
118+
* Create a PR for your branch
119+
* When the PR is merged, tag the first commit with the version number, and create a github release using the ``CHANGELOG``
120+
121+
To release a new version (including the wheel)::
122+
123+
pip install twine
124+
python setup.py sdist bdist_wheel
125+
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
126+
127+
And after testing everything works fine on the testing repository::
128+
129+
twine upload dist/*
109130

110131
**********
111132
Ressources

‎VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.9
1+
1.11.dev0

0 commit comments

Comments
 (0)
Failed to load comments.