From: drh Date: Sat, 11 Feb 2006 01:56:54 +0000 (+0000) Subject: Prepare for the release of 3.3.4. (CVS 3081) X-Git-Tag: version-3.6.10~3086 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=71a355e379098512e3519684cc533267ad8f2e64;p=thirdparty%2Fsqlite.git Prepare for the release of 3.3.4. (CVS 3081) FossilOrigin-Name: 951f3322c0eac4ae311c84f2d15f2c264f5c473a --- diff --git a/VERSION b/VERSION index 619b537668..a0891f563f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.3.3 +3.3.4 diff --git a/manifest b/manifest index e91ff2c417..603ab78eb1 100644 --- a/manifest +++ b/manifest @@ -1,9 +1,9 @@ -C Add\ssupport\sand\sdocumentation\sfor\sthe\sfullfsync\spragma.\s\sAlso\sinclude\nsome\sother\sunrelated\sdocumentation\supdates.\s(CVS\s3080) -D 2006-02-11T01:25:51 +C Prepare\sfor\sthe\srelease\sof\s3.3.4.\s(CVS\s3081) +D 2006-02-11T01:56:54 F Makefile.in 5d8dff443383918b700e495de42ec65bc1c8865b F Makefile.linux-gcc 74ba0eadf88748a9ce3fd03d2a3ede2e6715baec F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 -F VERSION 54c34680bfafc0aa2310025258978b402d7eaa64 +F VERSION bb72027a4c27efb46a02c4fcb1fa959db9a5bc79 F aclocal.m4 7daea4c35e88de30d5a3f6f7a2ab99720e803bbd F addopcodes.awk 701697fae48376375ec8532c3d04e910cfeef352 F art/2005osaward.gif 0d1851b2a7c1c9d0ccce545f3e14bca42d7fd248 @@ -309,7 +309,7 @@ F www/autoinc.tcl b357f5ba954b046ee35392ce0f884a2fcfcdea06 F www/c_interface.tcl b51b08591554c16a0c3ef718364a508ac25abc7e F www/capi3.tcl 7a7cc225fe02eb7ab861a6019b08baa0014409e1 F www/capi3ref.tcl 0ce8b070cc22d460268d46c208999ffa96566939 -F www/changes.tcl c36d331b25a3b193845c05a6fa3f914899634940 +F www/changes.tcl 06e23e1286bee6753d405047f0ccb5c2ba8ca555 F www/common.tcl 14d121c28532ad20c3e349caa4db708b0b822083 F www/compile.tcl 276546d7eb445add5a867193bbd80f6919a6b084 F www/conflict.tcl cdd0f4b59b0ba6d61f67e6a38f3ae45853bacb30 @@ -328,7 +328,7 @@ F www/fileformat.tcl 900c95b9633abc3dcfc384d9ddd8eb4876793059 F www/formatchng.tcl f4f5f32205c0a70d07784f7bf9ce33ed34bfcbf3 F www/fullscanb.gif f7c94cb227f060511f8909e10f570157263e9a25 F www/index-ex1-x-b.gif f9b1d85c3fa2435cf38b15970c7e3aa1edae23a3 -F www/index.tcl 9e31e3df4fe9385b24fb30086361c51a3ae486b5 +F www/index.tcl 9c659eec487d5e9196d4125ab200cfc86e93528d F www/indirect1b1.gif adfca361d2df59e34f9c5cac52a670c2bfc303a1 F www/lang.tcl 8761d4ce0dfd029a638cfd4c54422dd852ec6606 F www/lockingv3.tcl f59b19d6c8920a931f096699d6faaf61c05db55f @@ -352,7 +352,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513 -P d20a33ac2a29a3410fa28078dd122d87d8fca4fe -R a0687c1a32871f5de67a2bea238c288d +P f2069d0bf3161591535e68b7389792e9cb7fe043 +R b5f58a10da936a365a77f409adec1c4f U drh -Z d6577bff89d0124a23b77557cce8c0c8 +Z c05de412f812a5f24b07e7bc73f64526 diff --git a/manifest.uuid b/manifest.uuid index c5828208a2..b33b3086c6 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -f2069d0bf3161591535e68b7389792e9cb7fe043 \ No newline at end of file +951f3322c0eac4ae311c84f2d15f2c264f5c473a \ No newline at end of file diff --git a/www/changes.tcl b/www/changes.tcl index d220808be6..3d3458eec8 100644 --- a/www/changes.tcl +++ b/www/changes.tcl @@ -25,6 +25,20 @@ proc chng {date desc} { puts "

" } +chng {2006 February 11 (3.3.4)} { +
  • Fix a blunder in the Unix mutex implementation that can lead to +deadlock on multithreaded systems.
  • +
  • Fix an alignment problem on 64-bit machines
  • +
  • Added the fullfsync pragma.
  • +
  • Fix an optimizer bug that could have caused some unusual LEFT OUTER JOINs +to give incorrect results.
  • +
  • The SUM function detects integer overflow and converts to accumulating +an approximate result using floating point numbers
  • +
  • Host parameter names can begin with '@' for compatibility with SQL Server. +
  • +
  • Other miscellaneous bug fixes
  • +} + chng {2006 January 31 (3.3.3)} {
  • Removed support for an ON CONFLICT clause on CREATE INDEX - it never worked correctly so this should not present any backward compatibility diff --git a/www/index.tcl b/www/index.tcl index ede85a0efe..b3acc0fa1d 100644 --- a/www/index.tcl +++ b/www/index.tcl @@ -66,6 +66,12 @@ proc newsitem {date title text} { puts "
    " } +newsitem {2006-Feb-11} {Version 3.3.4} { + This release fixes several bugs, including a + a blunder that might cause a deadlock on multithreaded systems. + Anyone using SQLite in a multithreaded environment should probably upgrade. +} + newsitem {2006-Jan-31} {Version 3.3.3 stable} { There have been no major problems discovered in version 3.3.2, so we hereby declare the new APIs and language features to be stable @@ -119,4 +125,4 @@ puts {

    Old news...

    } -footer {$Id: index.tcl,v 1.134 2006/01/31 16:20:50 drh Exp $} +footer {$Id: index.tcl,v 1.135 2006/02/11 01:56:55 drh Exp $}