Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Increment version number and update documentation in preparation for version 3.2.1. (CVS 2424) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b0409b93108096a81245170887d60d07 |
User & Date: | drh 2005-03-28 16:56:09.000 |
Context
2005-03-28
| ||
18:04 | Fix another memory leak in the pager. (CVS 2425) (check-in: 4ca11ca015 user: drh tags: trunk) | |
16:56 | Increment version number and update documentation in preparation for version 3.2.1. (CVS 2424) (check-in: b0409b9310 user: drh tags: trunk) | |
16:50 | Changes to alter3.test to allow it to work with a codec. (CVS 2423) (check-in: 9e856bab2b user: drh tags: trunk) | |
Changes
Changes to VERSION.
|
| | | 1 | 3.2.1 |
Changes to www/changes.tcl.
︙ | ︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } 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> <li>Improved support for Cygwin.</li> <li>Numerous bug fixes and documentation updates.</li> } | > > > > > | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2005 March 27 (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> <li>Improved support for Cygwin.</li> <li>Numerous bug fixes and documentation updates.</li> } |
︙ | ︙ |
Changes to www/index.tcl.
︙ | ︙ | |||
56 57 58 59 60 61 62 63 64 65 66 67 68 69 | 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-21} {Version 3.2.0} { The primary purpose for version 3.2.0 is to add support for <a href="lang_altertable.html">ALTER TABLE ADD COLUMN</a>. The new ADD COLUMN capability is made possible by AOL developers supporting and embracing great open-source software. Thanks, AOL! | > > > > > > | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | 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-27} {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 <a href="lang_altertable.html">ALTER TABLE ADD COLUMN</a>. The new ADD COLUMN capability is made possible by AOL developers supporting and embracing great open-source software. Thanks, AOL! |
︙ | ︙ | |||
103 104 105 106 107 108 109 | } 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.114 2005/03/28 16:56:09 drh Exp $} |