1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-12-24 14:17:58 +03:00

Update version number of documentation in preparation for version 3.4.2. (CVS 4217)

FossilOrigin-Name: 1ed51e3ca04bee887326cb323bc7046ff1a98946
This commit is contained in:
drh
2007-08-13 16:15:29 +00:00
parent ea4d9e2dc8
commit d0b567a944
6 changed files with 63 additions and 28 deletions

View File

@@ -28,6 +28,27 @@ proc chng {date desc} {
puts "</DD>"
}
chng {2007 August 13 (3.4.2)} {
<li>Fix a database corruption bug that might occur if a ROLLBACK command
is executed in <a href="pragma.html#pragma_auto_vacuum">auto-vacuum mode</a>
and a very small <a href="capi3ref.html#sqlite3_soft_heap_limit">
soft_heap_limit</a> is set.
<a href="http://www.sqlite.org/cvstrac/tktview?tn=2565">Ticket #2565</a>.
<li>Add the ability to run a full regression test with a small
<a href="capi3ref.html#sqlite3_soft_heap_limit">soft_heap_limit</a>.
<li>Fix other minor problems with using small soft heap limits.
<li>Work-around for
<a href="http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575">GCC bug 32575</a>.
<li>Improved error detection of misused aggregate functions.
<li>Improvements to the amalgamation generator script so that all symbols
are prefixed with either SQLITE_PRIVATE or SQLITE_API.
}
chng {2007 July 20 (3.4.1)} {
<li>Fix a bug in <a href="lang_vacuum.html">VACUUM</a> that can lead to
<a href="http://www.sqlite.org/cvstrac/wiki?p=DatabaseCorruption">