Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update version number and documentation for version 3.0.6. (CVS 1933) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
67370926e374180b2de6e9ab60e5c9dd |
User & Date: | drh 2004-09-02 16:36:03.000 |
Context
2004-09-02
| ||
16:45 | Version 3.0.6 (beta) (CVS 1934) (check-in: c190b95c30 user: drh tags: trunk) | |
16:36 | Update version number and documentation for version 3.0.6. (CVS 1933) (check-in: 67370926e3 user: drh tags: trunk) | |
15:53 | Address some minor 32/64 bit issues. (CVS 1932) (check-in: 6c9be972c1 user: drh tags: trunk) | |
Changes
Changes to VERSION.
|
| | | 1 | 3.0.6 |
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 {2004 August 29 (3.0.5 beta)} { <li>Support for ":AAA" style bind parameter names.</li> <li>Added the new sqlite3_bind_parameter_name() interface.</li> <li>Support for TCL variable names embedded in SQL statements in the TCL bindings.</li> <li>The TCL bindings transfer data without necessarily doing a conversion | > > > > > > > > > | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2004 September 02 (3.0.6 beta)} { <li>Better detection and handling of corrupt database files.</li> <li>The sqlite3_step() interface returns SQLITE_BUSY if it is unable to commit a change because of a lock</li> <li>Combine the implementations of LIKE and GLOB into a single pattern-matching subroutine.</li> <li>Miscellaneous code size optimizations and bug fixes</li> } chng {2004 August 29 (3.0.5 beta)} { <li>Support for ":AAA" style bind parameter names.</li> <li>Added the new sqlite3_bind_parameter_name() interface.</li> <li>Support for TCL variable names embedded in SQL statements in the TCL bindings.</li> <li>The TCL bindings transfer data without necessarily doing a conversion |
︙ | ︙ |
Changes to www/index.tcl.
︙ | ︙ | |||
53 54 55 56 57 58 59 60 61 62 63 64 65 66 | 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 {2004-Aug-29} {Version 3.0.5 (beta)} { The fourth beta release of SQLite version 3.0 is now available. The next release is expected to be called "stable". } | > > > > > > > > > | 53 54 55 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 {2004-Sep-02} {Version 3.0.6 (beta)} { Because of some important changes to way sqlite3_step() responds to locked databases when trying to do a COMMIT, we decided to do an additional beta release prior to the first "stable" release. If no serious problems are discovered in this version, we will release version 3.0 "stable" in about a week. } newsitem {2004-Aug-29} {Version 3.0.5 (beta)} { The fourth beta release of SQLite version 3.0 is now available. The next release is expected to be called "stable". } |
︙ | ︙ | |||
81 82 83 84 85 86 87 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } | | | 90 91 92 93 94 95 96 97 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } footer {$Id: index.tcl,v 1.94 2004/09/02 16:36:03 drh Exp $} |