Update version number and documentation for version 3.0.6. (CVS 1933)

FossilOrigin-Name: 67370926e374180b2de6e9ab60e5c9ddab4b1317
This commit is contained in:
drh 2004-09-02 16:36:03 +00:00
parent c44af71c08
commit d1b03577ec
5 changed files with 29 additions and 11 deletions

View File

@ -1 +1 @@
3.0.5
3.0.6

View File

@ -1,9 +1,9 @@
C Address\ssome\sminor\s32/64\sbit\sissues.\s(CVS\s1932)
D 2004-09-02T15:53:57
C Update\sversion\snumber\sand\sdocumentation\sfor\sversion\s3.0.6.\s(CVS\s1933)
D 2004-09-02T16:36:03
F Makefile.in 65a7c43fcaf9a710d62f120b11b6e435eeb4a450
F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457
F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
F VERSION ffdb637d0fe9a365fb39b4413a4f366d10dcd12a
F VERSION d28cfc2e7714a747851e50cc1a5ee8ab0ded7a78
F aclocal.m4 7daea4c35e88de30d5a3f6f7a2ab99720e803bbd
F art/SQLite.eps 9b43cc99cfd2be687d386faea6862ea68d6a72b2
F art/SQLite.gif 1bbb94484963f1382e27e1c5e86dd0c1061eba2b
@ -218,7 +218,7 @@ F www/audit.tcl 90e09d580f79c7efec0c7d6f447b7ec5c2dce5c0
F www/c_interface.tcl 83b39203e1ded4c2dab97f42edf31279a308efcb
F www/capi3.tcl 5c1cb163f4d2a54e2d0e22dcc399dd71245c8b89
F www/capi3ref.tcl bead38516efb0227ffa6ac76beb3f7ea405bb389
F www/changes.tcl 27a1b9870ba4d81ff3cebfbcab7623390e6aab64
F www/changes.tcl 3641bc28b86b40c82d546727da45ea0f0aa9a9f4
F www/common.tcl f786e6be86fb2627ceb30e770e9efa83b9c67a3a
F www/conflict.tcl fb8a2ba83746c7fdfd9e52fa7f6aaf5c422b8246
F www/copyright-release.html 294e011760c439c44951a6bfecd4c81a1ae359e8
@ -232,7 +232,7 @@ F www/dynload.tcl 02eb8273aa78cfa9070dd4501dca937fb22b466c
F www/faq.tcl 3a1776818d9bd973ab0c3048ec7ad6b1ad091ae5
F www/fileformat.tcl f71a06a0d533c7df408539c64113b4adeaf29764
F www/formatchng.tcl d1dfecedfb25e122ab513a1e0948b15cb4f0be46
F www/index.tcl d5d79b45e0f3ff42dca73723c30232bb3c9e2e9a
F www/index.tcl 7d0caef2a084b3f6e4881bee2485b1cc1458d9f6
F www/lang.tcl b2ba401104a76e7842469b33a968f5eda9bd462b
F www/lockingv3.tcl afcd22f0f063989cff2f4d57bbc38d719b4c6e75
F www/mingw.tcl d96b451568c5d28545fefe0c80bee3431c73f69c
@ -248,7 +248,7 @@ F www/tclsqlite.tcl 560ecd6a916b320e59f2917317398f3d59b7cc25
F www/vdbe.tcl 59288db1ac5c0616296b26dce071c36cb611dfe9
F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0
F www/whentouse.tcl a8335bce47cc2fddb07f19052cb0cb4d9129a8e4
P 1cf05bc607c88a3c0b81e82ee2d4fc761f08901a
R ca84df6aa85a3e62cdf58c252c001156
P 6c9be972c1c289b657ba87db8db08fceb89b0171
R 11a68bf4bf2e4d26d945a2cfc6fe7c62
U drh
Z d222cf180b4b3681708f917d9465c554
Z 5fc497ee2d8e582df90613bb68374fd2

View File

@ -1 +1 @@
6c9be972c1c289b657ba87db8db08fceb89b0171
67370926e374180b2de6e9ab60e5c9ddab4b1317

View File

@ -21,6 +21,15 @@ proc chng {date desc} {
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>

View File

@ -58,6 +58,15 @@ proc newsitem {date title text} {
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".
@ -85,4 +94,4 @@ 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 $}
footer {$Id: index.tcl,v 1.94 2004/09/02 16:36:03 drh Exp $}