Preparing for the release of version 3.3.5. (CVS 3165)

FossilOrigin-Name: 159fb92bd5290098986709f5d9ff8183e9059d53
This commit is contained in:
drh 2006-04-05 12:15:11 +00:00
parent 6103fe972e
commit 9100726972
5 changed files with 37 additions and 11 deletions

View File

@ -1 +1 @@
3.3.4
3.3.5

View File

@ -1,9 +1,9 @@
C Make\ssure\sSQLITE_NOMEM\sis\sreported\sout\son\sa\smalloc\sfailure\sin\san\sATTACH\neven\sif\sthe\smalloc\sfailure\sreports\swithin\sa\snested\scalls\sto\ssqlite3_prepare().\s(CVS\s3164)
D 2006-04-05T11:57:37
C Preparing\sfor\sthe\srelease\sof\sversion\s3.3.5.\s(CVS\s3165)
D 2006-04-05T12:15:11
F Makefile.in 5d8dff443383918b700e495de42ec65bc1c8865b
F Makefile.linux-gcc 74ba0eadf88748a9ce3fd03d2a3ede2e6715baec
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
F VERSION bb72027a4c27efb46a02c4fcb1fa959db9a5bc79
F VERSION 2bc3eace6a71bc4f2575679b944378b275e9412c
F aclocal.m4 7daea4c35e88de30d5a3f6f7a2ab99720e803bbd
F addopcodes.awk 701697fae48376375ec8532c3d04e910cfeef352
F art/2005osaward.gif 0d1851b2a7c1c9d0ccce545f3e14bca42d7fd248
@ -312,7 +312,7 @@ F www/autoinc.tcl b357f5ba954b046ee35392ce0f884a2fcfcdea06
F www/c_interface.tcl b51b08591554c16a0c3ef718364a508ac25abc7e
F www/capi3.tcl 7a7cc225fe02eb7ab861a6019b08baa0014409e1
F www/capi3ref.tcl 38704c15900a9c16641e79c1c1fe9a3c2c479ada
F www/changes.tcl 06e23e1286bee6753d405047f0ccb5c2ba8ca555
F www/changes.tcl 8cf905727bfba4cda522a80716e8fc742420c085
F www/common.tcl 14d121c28532ad20c3e349caa4db708b0b822083
F www/compile.tcl 276546d7eb445add5a867193bbd80f6919a6b084
F www/conflict.tcl cdd0f4b59b0ba6d61f67e6a38f3ae45853bacb30
@ -331,7 +331,7 @@ F www/fileformat.tcl 900c95b9633abc3dcfc384d9ddd8eb4876793059
F www/formatchng.tcl 4972e680f9331ea46f47001e349baba807f5b60a
F www/fullscanb.gif f7c94cb227f060511f8909e10f570157263e9a25
F www/index-ex1-x-b.gif f9b1d85c3fa2435cf38b15970c7e3aa1edae23a3
F www/index.tcl 9c659eec487d5e9196d4125ab200cfc86e93528d
F www/index.tcl 216b7d9ea9db20cd85c0eff7a4369904d5768c68
F www/indirect1b1.gif adfca361d2df59e34f9c5cac52a670c2bfc303a1
F www/lang.tcl 9fe2b8bb0a3158f4b629e184f5db9f895ecbb4cd
F www/lockingv3.tcl f59b19d6c8920a931f096699d6faaf61c05db55f
@ -355,7 +355,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
P fdbff3f145296d5dcba8987c25629e27353e2ab0
R a178117f13217df6aee4e3891a129fac
P 3538a4e30fb5131b461bb0cf72cada63e9724e14
R fd2db87b33493ad440519b524e22f08b
U drh
Z 43dddd673d1c73ea60cfe59bfb56a0fc
Z 12625599af2328aaa544e40b359eb8cb

View File

@ -1 +1 @@
3538a4e30fb5131b461bb0cf72cada63e9724e14
159fb92bd5290098986709f5d9ff8183e9059d53

View File

@ -25,6 +25,26 @@ proc chng {date desc} {
puts "<DD><P><UL>$desc</UL></P></DD>"
}
chng {2006 April 5 (3.3.5)} {
<li>CHECK constraints use conflict resolution algorithms correctly.</li>
<li>The SUM() function throws an error on integer overflow.</li>
<li>Choose the column names in a compound query from the left-most SELECT
instead of the right-most.</li>
<li>The sqlite3_create_collation honors the SQLITE_UTF16_ALIGNED flag.</li>
<li>SQLITE_SECURE_DELETE compile-time option always overwrites deleted
data with zeros.</li>
<li>Detect integer overflow in abs().</li>
<li>The random() function provides 64 bits of randomness instead of
only 32 bits.</li>
<li>Parser detects and reports automaton stack overflow.</li>
<li>Change the round() function to return REAL instead of TEXT.</li>
<li>All WHERE clause terms on the left table of a LEFT OUTER JOIN to
contain aggregate subqueries.</li>
<li>Skip over leading spaces in text to numeric conversions.</li>
<li>Various minor bug and documentation typo fixes and
performance enhancements.</li>
}
chng {2006 February 11 (3.3.4)} {
<li>Fix a blunder in the Unix mutex implementation that can lead to
deadlock on multithreaded systems.</li>

View File

@ -66,6 +66,12 @@ proc newsitem {date title text} {
puts "<hr width=\"50%\">"
}
newsitme {2006-Apr-5} {Version 3.3.5} {
This release fixes many minor bugs and documentation typos and
provides some minor new features and performance enhancements.
Upgrade only if you are having problems or need one of the new features.
}
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.
@ -125,4 +131,4 @@ puts {
<p align="right"><a href="oldnews.html">Old news...</a></p>
</td></tr></table>
}
footer {$Id: index.tcl,v 1.135 2006/02/11 01:56:55 drh Exp $}
footer {$Id: index.tcl,v 1.136 2006/04/05 12:15:11 drh Exp $}