From: drh Date: Tue, 9 Jan 2007 23:13:06 +0000 (+0000) Subject: Documentation updates prior to version 3.3.10. Among the changes is a X-Git-Tag: version-3.6.10~2586 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3372bdf5871546d32e7d834abb0ff678a545974f;p=thirdparty%2Fsqlite.git Documentation updates prior to version 3.3.10. Among the changes is a fix for ticket #2148 (CVS 3584) FossilOrigin-Name: 686beffa6956654fc43a2e3f1ea2896b86533774 --- diff --git a/VERSION b/VERSION index 3b47f2e4f8..5f6fc5edc2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.3.9 +3.3.10 diff --git a/manifest b/manifest index e9f04d0e41..fab18b898e 100644 --- a/manifest +++ b/manifest @@ -1,9 +1,9 @@ -C Fix\sthe\swindows\sOS\slayer\sso\sthat\sit\sreturns\sdetailed\sIOERR\serror\scodes.\s(CVS\s3583) -D 2007-01-09T17:18:19 +C Documentation\supdates\sprior\sto\sversion\s3.3.10.\s\sAmong\sthe\schanges\sis\sa\nfix\sfor\sticket\s#2148\s(CVS\s3584) +D 2007-01-09T23:13:06 F Makefile.in 7fa74bf4359aa899da5586e394d17735f221315f F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 -F VERSION b75cfeea5b7283ffac7f9da837a6436b21bd01ca +F VERSION 1e760df421ea310bc29d8069a0d0848581864246 F aclocal.m4 a8df0ae21d1ac797fa7d7eaa1703412bc61b973f F addopcodes.awk 701697fae48376375ec8532c3d04e910cfeef352 F art/2005osaward.gif 0d1851b2a7c1c9d0ccce545f3e14bca42d7fd248 @@ -381,7 +381,7 @@ F www/autoinc.tcl b357f5ba954b046ee35392ce0f884a2fcfcdea06 F www/c_interface.tcl b51b08591554c16a0c3ef718364a508ac25abc7e F www/capi3.tcl 7a7cc225fe02eb7ab861a6019b08baa0014409e1 F www/capi3ref.tcl 105cad9948f77e0764af3bfcc97ac45f2cb63a2f -F www/changes.tcl 45bd748d77a00949b7ec7fae7913d139f1b85df4 +F www/changes.tcl dd6aaf7839ac20b3c5fe69533755bc64d8e43952 F www/common.tcl 14d121c28532ad20c3e349caa4db708b0b822083 F www/compile.tcl 276546d7eb445add5a867193bbd80f6919a6b084 F www/conflict.tcl cdd0f4b59b0ba6d61f67e6a38f3ae45853bacb30 @@ -400,7 +400,7 @@ F www/fileformat.tcl 900c95b9633abc3dcfc384d9ddd8eb4876793059 F www/formatchng.tcl bbb8af1ee494a71031acac4c8d8c51535f23b9df F www/fullscanb.gif f7c94cb227f060511f8909e10f570157263e9a25 F www/index-ex1-x-b.gif f9b1d85c3fa2435cf38b15970c7e3aa1edae23a3 -F www/index.tcl 788a3cf77baf8d6043b9016196580c8c2097e455 +F www/index.tcl 80009d939a1194fe5eb8d25b4ea9e9af03a9d8c9 F www/indirect1b1.gif adfca361d2df59e34f9c5cac52a670c2bfc303a1 F www/lang.tcl fb1070256c211a3dec735e1273c506c1f8db7556 F www/lockingv3.tcl f59b19d6c8920a931f096699d6faaf61c05db55f @@ -424,7 +424,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513 -P c4eb2100c39356e1816cc6514d65155e47ea1a1d -R 9ef1c294013987fe571d02b84a6957c1 +P 4b36de46c42e2e42d611b38ff18949bea55c803b +R a900feeae70e7f64188ed8aec5186a0b U drh -Z f4ba755d06fed28592673c450bbce8fe +Z 34a3ee0ac8765f98a93923ba5477552e diff --git a/manifest.uuid b/manifest.uuid index 7dbab4fdee..c410391b2b 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -4b36de46c42e2e42d611b38ff18949bea55c803b \ No newline at end of file +686beffa6956654fc43a2e3f1ea2896b86533774 \ No newline at end of file diff --git a/www/changes.tcl b/www/changes.tcl index 26febe16a4..c186d51142 100644 --- a/www/changes.tcl +++ b/www/changes.tcl @@ -25,13 +25,30 @@ proc chng {date desc} { puts "

" } +chng {2007 January 9 (3.3.10)} { +
  • Fix bugs in the implementation of the new +sqlite3_prepare_v2() API +that can lead to segfaults.
  • +
  • Fix 1-second round-off errors in the + +strftime() function
  • +
  • Enhance the windows OS layer to provide detailed error codes
  • +
  • Work around a win2k problem so that SQLite can use single-character +database file names
  • +
  • The +user_version and +schema_version pragmas +correctly set their column names in the result set
  • +
  • Documentation updates
  • +} + chng {2007 January 4 (3.3.9)} {
  • Fix bugs in pager.c that could lead to database corruption if two processes both try to recover a hot journal at the same instant
  • Added the sqlite3_prepare_v2() API.
  • Fixed the ".dump" command in the command-line shell to show -triggers and views again.
  • +indices, triggers and views again.
  • Change the table_info pragma so that it returns NULL for the default value if there is no default value
  • Support for non-ASCII characters in win95 filenames
  • diff --git a/www/index.tcl b/www/index.tcl index 604534e821..fbae0b8da1 100644 --- a/www/index.tcl +++ b/www/index.tcl @@ -67,6 +67,11 @@ proc newsitem {date title text} { puts "
    " } +newsitem {2007-Jan-9} {Version 3.3.10} { + Version 3.3.10 fixes several bugs that were introduced by the + release. Upgrading is recommended. +} + newsitem {2007-Jan-4} {Version 3.3.9} { Version 3.3.9 fixes bugs that can lead to database corruption under obsure and difficult to reproduce circumstances. See @@ -113,4 +118,4 @@ puts {

    Old news...

    } -footer {$Id: index.tcl,v 1.144 2007/01/04 16:37:41 drh Exp $} +footer {$Id: index.tcl,v 1.145 2007/01/09 23:13:06 drh Exp $}