Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Change the date of the 3.2.1 release. (CVS 2432) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
afa42e2fa4487e4671ee481df09659a4 |
User & Date: | drh 2005-03-29 13:19:02.000 |
Context
2005-03-29
| ||
13:37 | Version 3.2.1 (CVS 2433) (check-in: 844f01af72 user: drh tags: trunk) | |
13:19 | Change the date of the 3.2.1 release. (CVS 2432) (check-in: afa42e2fa4 user: drh tags: trunk) | |
13:18 | Fix minor display bugs in sqlite3_analyzer. (CVS 2431) (check-in: d89aaba5b0 user: drh tags: trunk) | |
Changes
Changes to www/changes.tcl.
︙ | ︙ | |||
17 18 19 20 21 22 23 | proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } | | | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2005 March 29 (3.2.1)} { <li>Fix a memory allocation error in the new ADD COLUMN comment.</li> <li>Documentation updates</li> } chng {2005 March 21 (3.2.0)} { <li>Added support for ALTER TABLE ADD COLUMN.</li> <li>Added support for the "T" separator in ISO-8601 date/time strings.</li> |
︙ | ︙ |
Changes to www/index.tcl.
︙ | ︙ | |||
57 58 59 60 61 62 63 | 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%\">" } | | | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | 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 {2005-Mar-29} {Version 3.2.1} { This release fixes a memory allocation problem in the new <a href="lang_altertable.html">ALTER TABLE ADD COLUMN</a> command. } newsitem {2005-Mar-21} {Version 3.2.0} { The primary purpose for version 3.2.0 is to add support for |
︙ | ︙ | |||
109 110 111 112 113 114 115 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } | | | 109 110 111 112 113 114 115 116 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } footer {$Id: index.tcl,v 1.115 2005/03/29 13:19:02 drh Exp $} |