Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Change the release date for version 3.3.2 to January 24. (CVS 3017) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7a2617f6a5990dc711cacc993d7a91e4 |
User & Date: | drh 2006-01-23 23:53:17.000 |
Context
2006-01-24
| ||
00:15 | More test script changes to get it to run without -DSQLITE_MEMDEBUG. (CVS 3018) (check-in: 0ede5e496b user: drh tags: trunk) | |
2006-01-23
| ||
23:53 | Change the release date for version 3.3.2 to January 24. (CVS 3017) (check-in: 7a2617f6a5 user: drh tags: trunk) | |
23:49 | Disable shared-cache OOM tests if not compiled with -DSQLITE_MEMDEBUG. (CVS 3016) (check-in: 2d896667e4 user: drh tags: trunk) | |
Changes
Changes to www/changes.tcl.
︙ | ︙ | |||
21 22 23 24 25 26 27 | set label [string map {. _} $vers] puts "<A NAME=\"version_$label\">" } puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } | | | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | set label [string map {. _} $vers] puts "<A NAME=\"version_$label\">" } puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2006 January 24 (3.3.2 beta)} { <li>Bug fixes and speed improvements. Improved test coverage.</li> <li>Changes to the OS-layer interface: mutexes must now be recursive.</li> <li>Discontinue the use of thread-specific data for out-of-memory exception handling</li> } chng {2006 January 16 (3.3.1 alpha)} { |
︙ | ︙ |
Changes to www/index.tcl.
︙ | ︙ | |||
62 63 64 65 66 67 68 | proc newsitem {date title text} { puts "<h3>$date - $title</h3>" regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt puts "<p>$txt</p>" puts "<hr width=\"50%\">" } | | | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | proc newsitem {date title text} { puts "<h3>$date - $title</h3>" regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt puts "<p>$txt</p>" puts "<hr width=\"50%\">" } newsitem {2006-Jan-24} {Version 3.3.2 beta} { More bug fixes and performance improvements as we move closer to a production-ready version 3.3.x. } newsitem {2006-Jan-16} {Version 3.3.1 alpha} { Many bugs found in last week's alpha release have now been fixed and the library is running much faster again. |
︙ | ︙ | |||
150 151 152 153 154 155 156 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } | | | 150 151 152 153 154 155 156 157 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } footer {$Id: index.tcl,v 1.132 2006/01/23 23:53:17 drh Exp $} |