Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the release procedures to account for having the NuGet packages on the download page. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2b29d1923022a801ee66b291c7046347 |
User & Date: | mistachkin 2012-09-04 03:30:58.152 |
Context
2012-09-04
| ||
05:02 | Documentation and packaging updates for release 1.0.82.0. check-in: ebb05d9d27 user: mistachkin tags: trunk | |
03:30 | Update the release procedures to account for having the NuGet packages on the download page. check-in: 2b29d19230 user: mistachkin tags: trunk | |
03:14 | Update Eagle in externals to the beta 25 release. check-in: f3e2747329 user: mistachkin tags: trunk | |
Changes
Changes to Setup/updateFileInfo.tcl.
︙ | ︙ | |||
82 83 84 85 86 87 88 | # exactly 40 hexadecimal characters. In theory, in Tcl, this could have # an undefined result due to the mixing of greedy and non-greedy # quantifiers; however, in practice, this seems to work properly. Also, # this pattern assumes a particular structure for the [HTML] file to be # updated. # set pattern {<a\ | | | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | # exactly 40 hexadecimal characters. In theory, in Tcl, this could have # an undefined result due to the mixing of greedy and non-greedy # quantifiers; however, in practice, this seems to work properly. Also, # this pattern assumes a particular structure for the [HTML] file to be # updated. # set pattern {<a\ href=".*?/(.*?\.(?:exe|zip|nupkg))">.*?\((\d+?\.\d+?) MiB\).*?sha1:\ ([0-9A-F]{40})} # # NOTE: Grab all the data from the file to be updated. # set data [readFile $updateFileName] |
︙ | ︙ |
Changes to www/release.wiki.
︙ | ︙ | |||
236 237 238 239 240 241 242 | <b>..\Externals\Eagle\bin\EagleShell.exe -file verify.eagle Output</b><br /> <i>If errors are generated, the file "<root>\Setup\verify.lst" may need to be updated to account for the files that have been added and/or removed from the release archives since the previous release.</i> </li> </ol> | < < < < < < < < < < < < < < < < < < < < < < < < < < | 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | <b>..\Externals\Eagle\bin\EagleShell.exe -file verify.eagle Output</b><br /> <i>If errors are generated, the file "<root>\Setup\verify.lst" may need to be updated to account for the files that have been added and/or removed from the release archives since the previous release.</i> </li> </ol> <a name="buildNuGetPackages"></a> <h2>Build NuGet Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>".</li> |
︙ | ︙ | |||
301 302 303 304 305 306 307 308 309 310 311 312 313 314 | <li> Enter the following command to build the NuGet package for x64: <b>nuget.exe pack SQLite.x64.nuspec</b><br /><i>This assumes that the NuGet binary is available somewhere along the [http://en.wikipedia.org/wiki/PATH_%28variable%29 | PATH].<br />Please refer to [http://docs.nuget.org/ | NuGet Documentation] for further details.</i> </li> </ol> <a name="publishRelease"></a> <h2>Publish Release</h2> <ol> <li> | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 | <li> Enter the following command to build the NuGet package for x64: <b>nuget.exe pack SQLite.x64.nuspec</b><br /><i>This assumes that the NuGet binary is available somewhere along the [http://en.wikipedia.org/wiki/PATH_%28variable%29 | PATH].<br />Please refer to [http://docs.nuget.org/ | NuGet Documentation] for further details.</i> </li> <li> Enter the following command to move the NuGet packages to the release output directory: <b>move *.nupkg Setup\Output</b> </li> </ol> <a name="updateDownloadsPage"></a> <h2>Update Downloads Page</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Replace the version numbers for the previous release in the local working copy of the [./downloads.wiki | downloads page] with the new version numbers for System.Data.SQLite and the SQLite core. </li> <li> Enter the following command to update the sizes and hashes on the downloads page based on all the built release packages: <b>tclsh.exe updateFileInfo.tcl</b><br /><i>This assumes that [http://www.activestate.com/activetcl | ActiveTcl] version 8.4 or later has been installed using the default settings and that the Fossil binary is available somewhere along the [http://en.wikipedia.org/wiki/PATH_%28variable%29 | PATH] (i.e. for calculating the SHA1 hashes).</i> </li> </ol> <a name="publishRelease"></a> <h2>Publish Release</h2> <ol> <li> |
︙ | ︙ |