From: drh Date: Wed, 18 Apr 2007 13:49:37 +0000 (+0000) Subject: Bump the version number and update documents in preparation for 3.3.16. (CVS 3850) X-Git-Tag: version-3.6.10~2320 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0403f54a8ac1634c7c9c43a00607cbdbd2badaba;p=thirdparty%2Fsqlite.git Bump the version number and update documents in preparation for 3.3.16. (CVS 3850) FossilOrigin-Name: 852100a332d9f602e5f6285d2b7e19a3060c6162 --- diff --git a/VERSION b/VERSION index a9c846e62f..272a1ca301 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.3.15 +3.3.16 diff --git a/manifest b/manifest index 1cc428598c..ac905cf0fe 100644 --- a/manifest +++ b/manifest @@ -1,9 +1,9 @@ -C Avoid\sreloading\sthe\sdb\sschema\safter\sa\sfailed\sOP_VerifyCookie\sif\sthe\sin-memory\sschema\scookie\salready\smatches\sthe\sdatabase\sfile.\s(CVS\s3849) -D 2007-04-17T08:32:34 +C Bump\sthe\sversion\snumber\sand\supdate\sdocuments\sin\spreparation\sfor\s3.3.16.\s(CVS\s3850) +D 2007-04-18T13:49:37 F Makefile.in 8cab54f7c9f5af8f22fd97ddf1ecfd1e1860de62 F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 -F VERSION f404379ac80b392704b9e35623554fbee85bf33d +F VERSION baea655a7c7b3d866a656d645b624d628510584a F aclocal.m4 d20ba55930a05197b484809fba1d2b603f4e67a6 F addopcodes.awk 701697fae48376375ec8532c3d04e910cfeef352 F art/2005osaward.gif 0d1851b2a7c1c9d0ccce545f3e14bca42d7fd248 @@ -416,7 +416,7 @@ F www/autoinc.tcl b357f5ba954b046ee35392ce0f884a2fcfcdea06 F www/c_interface.tcl b51b08591554c16a0c3ef718364a508ac25abc7e F www/capi3.tcl 7a7cc225fe02eb7ab861a6019b08baa0014409e1 F www/capi3ref.tcl 80178d2697e97236c208a2a6a507e82d121acc71 -F www/changes.tcl 91b7c26fa6872ccc85fb60d7a8554c06f5439246 +F www/changes.tcl fe8ce45119bd5704fcd53a242bd6ab5cae000d46 F www/common.tcl 2b793e5c31486c8a01dd27dc0a631ad93704438e F www/compile.tcl 276546d7eb445add5a867193bbd80f6919a6b084 F www/conflict.tcl cdd0f4b59b0ba6d61f67e6a38f3ae45853bacb30 @@ -435,7 +435,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 5e24f010bc398ec0381cdd5372f0e43a2d503995 +F www/index.tcl e91c98f4415a10425b1a06bc45432cf698c4fa4a F www/indirect1b1.gif adfca361d2df59e34f9c5cac52a670c2bfc303a1 F www/lang.tcl 26a38c36ec6686aee0e46eeac90acb3aae373537 F www/lockingv3.tcl e52345bd20323bef6146bfce18ae0829b2b7c87d @@ -459,7 +459,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5 -P cdc7608b8d590b2ca19be37f94f2cd17423ba8ac -R a95eb9701833203362ade6cf45a79fc8 -U danielk1977 -Z 5fca2c9a355f9d34fbf42735e6435fcb +P 61c1d06d10257575e1406303af331bcc4d00deb0 +R bf90195564c15e01a18b297640d49724 +U drh +Z b3a0f38e60351f7b4cfe8a1f9c0ba5b3 diff --git a/manifest.uuid b/manifest.uuid index 20e789d0c8..8dd86dca9b 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -61c1d06d10257575e1406303af331bcc4d00deb0 \ No newline at end of file +852100a332d9f602e5f6285d2b7e19a3060c6162 \ No newline at end of file diff --git a/www/changes.tcl b/www/changes.tcl index f7078c8469..5a700bb38a 100644 --- a/www/changes.tcl +++ b/www/changes.tcl @@ -25,6 +25,18 @@ proc chng {date desc} { puts "

" } +chng {2007 April 18 (3.3.16)} { +
  • Fix a bug that caused VACUUM to fail if NULLs appeared in a + UNIQUE column.
  • +
  • Reinstate performance improvements that were added in 3.3.14 + but regressed in 3.3.15.
  • +
  • Fix problems with the handling of ORDER BY expressions on + compound SELECT statements in subqueries.
  • +
  • Fix a potential segfault when destroying locks on WinCE in + a multi-threaded environment.
  • +
  • Documentation updates.
  • +} + chng {2007 April 9 (3.3.15)} {
  • Fix a bug introduced in 3.3.14 that caused a rollback of CREATE TEMP TABLE to leave the database connection wedged.
  • diff --git a/www/index.tcl b/www/index.tcl index 753fbba419..701181ee22 100644 --- a/www/index.tcl +++ b/www/index.tcl @@ -73,6 +73,12 @@ proc newsitem {date title text} { puts "
    " } +newsitem {2007-Apr-18} {Version 3.3.16} { + Performance improvements added in 3.3.14 but mistakenly turned off + in 3.3.15 have been reinstated. A bug has been fixed that prevented + VACUUM from running if a NULL value was in a UNIQUE column. +} + newsitem {2007-Apr-09} {Version 3.3.15} { An annoying bug introduced in 3.3.14 has been fixed. There are also many enhancements to the test suite. @@ -108,4 +114,4 @@ puts {

    Old news...

    } -footer {$Id: index.tcl,v 1.152 2007/04/09 13:18:47 drh Exp $} +footer {$Id: index.tcl,v 1.153 2007/04/18 13:49:37 drh Exp $}