comparison RELEASE.txt @ 7530:ed2bc951277b

Updates for 2.3.0 release.
author John Rouillard <rouilj@ieee.org>
date Wed, 12 Jul 2023 22:59:49 -0400
parents 05448536f154
children 2fc2b14edbf7
comparison
equal deleted inserted replaced
7529:05448536f154 7530:ed2bc951277b
101 10. Check the roundup.egg-info/SOURCES.txt to make sure that any new files are 101 10. Check the roundup.egg-info/SOURCES.txt to make sure that any new files are
102 included. (use hg status --rev <last release or tag>:tip to list changed 102 included. (use hg status --rev <last release or tag>:tip to list changed
103 added and removed files. Last release e.g. 1.5.1 where tip is what would 103 added and removed files. Last release e.g. 1.5.1 where tip is what would
104 become 1.6) E.G. 104 become 1.6) E.G.
105 105
106 hg status --rev 2.0.0:tip | sed -ne 's/^A //p' | while read i ; \ 106 hg status --rev 2.2.0:tip | sed -ne 's/^A //p' | while read i ; \
107 do echo $i; grep "$i" roundup.egg-info/SOURCES.txt; done | \ 107 do echo $i; grep "$i" roundup.egg-info/SOURCES.txt; done | \
108 uniq -c | sort -rn 108 uniq -c | sort -rn
109 109
110 Anything with a count of 1 is not in the manifest. 110 Anything with a count of 1 is not in the manifest.
111 If there are missing files that should be in the manifest, 111 If there are missing files that should be in the manifest,
112 edit MANIFEST.in to include them. For format docs see 112 edit MANIFEST.in to include them. For format docs see
113 https://packaging.python.org/guides/using-manifest-in/#using-manifest-in 113 https://packaging.python.org/guides/using-manifest-in/#using-manifest-in
114 (Note: files under website/ shouldn't be in the manifest.) 114 (Note: files under website/ shouldn't be in the manifest.)
115 10a: Check for removed files still in manifest: 115 10a: Check for removed files still in manifest:
116 116
117 hg status --rev 2.0.0:tip | sed -ne 's/^R //p' | while read i ; \ 117 hg status --rev 2.2.0:tip | sed -ne 's/^R //p' | while read i ; \
118 do echo $i; grep "$i" roundup.egg-info/SOURCES.txt; done | \ 118 do echo $i; grep "$i" roundup.egg-info/SOURCES.txt; done | \
119 uniq -c | sort -n 119 uniq -c | sort -n
120 120
121 any file with a count of 2 or more needs to be removed from 121 any file with a count of 2 or more needs to be removed from
122 MANIFEST.in and possibly cleaned out of the build tree. 122 MANIFEST.in and possibly cleaned out of the build tree.
139 can add --local=roundup-devel@lists.sourceforge.net. 139 can add --local=roundup-devel@lists.sourceforge.net.
140 This will create a file by the name <filename>.tar.gz.asc. 140 This will create a file by the name <filename>.tar.gz.asc.
141 141
142 Move file to website/www/signature directory 142 Move file to website/www/signature directory
143 143
144 mv <filename>.tar.gz.asc ../webite/www/signature/. 144 mv <filename>.tar.gz.asc ../webite/www/signatures/.
145 hg add ../website/www/signature/<filename>.tar.gz.asc 145 hg add ../website/www/signature/<filename>.tar.gz.asc
146 # commiting the file will be done in step 12 146 # commiting the file will be done in step 12
147 cd .. 147 cd ..
148 148
149 Add a link to the signature to doc/security.txt. Add a new link 149 Add a link to the signature to doc/security.txt. Add a new link

Roundup Issue Tracker: http://roundup-tracker.org/