Show More
@@ -16,10 +16,9 b' handy reminder and checklist for the release manager.' | |||
|
16 | 16 | Set environment variables to document previous release tag, current |
|
17 | 17 | release milestone, current release version, and git tag:: |
|
18 | 18 | |
|
19 |
PREV_RELEASE= |
|
|
20 |
MILESTONE= |
|
|
21 |
VERSION= |
|
|
22 | TAG="rel-$VERSION" | |
|
19 | PREV_RELEASE=4.0.0 | |
|
20 | MILESTONE=4.1 | |
|
21 | VERSION=4.1.0 | |
|
23 | 22 | BRANCH=master |
|
24 | 23 | |
|
25 | 24 | These variables may be used later to copy/paste as answers to the script |
@@ -109,7 +108,7 b' Commit the changes to release.py::' | |||
|
109 | 108 | |
|
110 | 109 | Create and push the tag:: |
|
111 | 110 | |
|
112 |
git tag -am "release $VERSION" "$ |
|
|
111 | git tag -am "release $VERSION" "$VERSION" | |
|
113 | 112 | git push origin --tags |
|
114 | 113 | |
|
115 | 114 | Update release.py back to `x.y-dev` or `x.y-maint`, and push:: |
@@ -123,7 +122,7 b' Update release.py back to `x.y-dev` or `x.y-maint`, and push::' | |||
|
123 | 122 | Get a fresh clone of the tag for building the release:: |
|
124 | 123 | |
|
125 | 124 | cd /tmp |
|
126 |
git clone --depth 1 https://github.com/ipython/ipython.git -b "$ |
|
|
125 | git clone --depth 1 https://github.com/ipython/ipython.git -b "$VERSION" | |
|
127 | 126 | |
|
128 | 127 | 7. Run the release script |
|
129 | 128 | ------------------------- |
General Comments 0
You need to be logged in to leave comments.
Login now