Increase the version number and update the change log in preparation for

the release of version 3.0.5. (CVS 1914)

FossilOrigin-Name: 69922aabb5c0065eb551fe20065c866e6abad434
This commit is contained in:
drh
2004-08-29 17:52:40 +00:00
parent f298718005
commit 37e012846c
5 changed files with 32 additions and 11 deletions
+15
View File
@@ -21,6 +21,21 @@ proc chng {date desc} {
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>
+7 -1
View File
@@ -58,6 +58,12 @@ proc newsitem {date title text} {
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
@@ -79,4 +85,4 @@ puts {
<p align="right"><a href="oldnews.html">Old news...</a></p>
</td></tr></table>
}
footer {$Id: index.tcl,v 1.92 2004/08/09 00:04:05 drh Exp $}
footer {$Id: index.tcl,v 1.93 2004/08/29 17:52:40 drh Exp $}