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