3 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ 1.11 (unreleased)
5
+ ----------------
6
+
7
+ 1.10 (2020-02-03)
8
+ ----------------
9
+
4
10
- Add support for Django 2.2 & 3.0
5
11
- Drop support for Django 1.8, 1.9 & 1.10
6
12
Original file line number Diff line number Diff line change @@ -106,6 +106,27 @@ Several form mixins are provided to cover frequent use cases:
106
106
107
107
See "mixin" documentation for details.
108
108
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/*
109
130
110
131
**********
111
132
Ressources
Original file line number Diff line number Diff line change 1
- 1.9
1
+ 1.11.dev0
0 commit comments