Show More
@@ -20,11 +20,11 b" name = 'ipython'" | |||
|
20 | 20 | # release. 'dev' as a _version_extra string means this is a development |
|
21 | 21 | # version |
|
22 | 22 | _version_major = 7 |
|
23 |
_version_minor = |
|
|
23 | _version_minor = 4 | |
|
24 | 24 | _version_patch = 0 |
|
25 | 25 | _version_extra = '.dev' |
|
26 | 26 | # _version_extra = 'b1' |
|
27 | _version_extra = '' # Uncomment this for full releases | |
|
27 | # _version_extra = '' # Uncomment this for full releases | |
|
28 | 28 | |
|
29 | 29 | # Construct full version string from these. |
|
30 | 30 | _ver = [_version_major, _version_minor, _version_patch] |
@@ -222,13 +222,12 b' Commit the changes to release.py::' | |||
|
222 | 222 | |
|
223 | 223 | Create and push the tag:: |
|
224 | 224 | |
|
225 |
git tag -am "release $VERSION" "$VERSION" - |
|
|
225 | git tag -am "release $VERSION" "$VERSION" -s | |
|
226 | 226 | git push origin $VERSION |
|
227 | 227 | |
|
228 |
(omit the ``- |
|
|
228 | (omit the ``-s`` if you are no signing the package) | |
|
229 | 229 | |
|
230 |
Update release.py back to ``x.y-dev`` or ``x.y-maint`` |
|
|
231 | ``development`` entry in ``docs/source/whatsnew/index.rst`` and push:: | |
|
230 | Update release.py back to ``x.y-dev`` or ``x.y-maint`` commit and push:: | |
|
232 | 231 | |
|
233 | 232 | git commit -am "back to development" -S |
|
234 | 233 | git push origin $BRANCH |
General Comments 0
You need to be logged in to leave comments.
Login now