Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Increase the version number and update the change log in preparation for the release of version 3.0.5. (CVS 1914) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
69922aabb5c0065eb551fe20065c866e |
User & Date: | drh 2004-08-29 17:52:40.000 |
Context
2004-08-29
| ||
18:14 | Adjustments to the download.html page generator script. (CVS 1915) (check-in: a6dc133139 user: drh tags: trunk) | |
17:52 | Increase the version number and update the change log in preparation for the release of version 3.0.5. (CVS 1914) (check-in: 69922aabb5 user: drh tags: trunk) | |
17:30 | Back out an optimization that was causing problems in UTF-16 databases. (CVS 1913) (check-in: 988cb064ab user: drh tags: trunk) | |
Changes
Changes to VERSION.
|
| | | 1 | 3.0.5 |
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 8 (3.0.4 beta)} { <li>CREATE TABLE and DROP TABLE now work correctly as prepared statements.</li> <li>Fix a bug in VACUUM and UNIQUE indices.</li> <li>Add the ".import" command to the command-line shell.</li> <li>Fix a bug that could cause index corruption when an attempt to delete rows of a table is blocked by a pending query.</li> | > > > > > > > > > > > > > > > | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | } 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 to a string.</li> <li>The database for TEMP tables is not created until it is needed.</li> <li>Add the ability to specify an alternative temporary file directory using the "sqlite_temp_directory" global variable.</li> <li>A compile-time option (SQLITE_BUSY_RESERVED_LOCK) causes the busy handler to be called when there is contention for a RESERVED lock.</li> <li>Various bug fixes and optimizations</li> } chng {2004 August 8 (3.0.4 beta)} { <li>CREATE TABLE and DROP TABLE now work correctly as prepared statements.</li> <li>Fix a bug in VACUUM and UNIQUE indices.</li> <li>Add the ".import" command to the command-line shell.</li> <li>Fix a bug that could cause index corruption when an attempt to delete rows of a table is blocked by a pending query.</li> |
︙ | ︙ |
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-08} {Version 3.0.4 (beta)} { The third beta release of SQLite version 3.0 is now available. This new beta fixes several bugs including a database corruption problem that can occur when doing a DELETE while a SELECT is pending. Expect at least one more beta before version 3.0 goes final. } | > > > > > > | 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | 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". } newsitem {2004-Aug-08} {Version 3.0.4 (beta)} { The third beta release of SQLite version 3.0 is now available. This new beta fixes several bugs including a database corruption problem that can occur when doing a DELETE while a SELECT is pending. Expect at least one more beta before version 3.0 goes final. } |
︙ | ︙ | |||
75 76 77 78 79 80 81 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } | | | 81 82 83 84 85 86 87 88 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } footer {$Id: index.tcl,v 1.93 2004/08/29 17:52:40 drh Exp $} |