From ee513831a7336c87d7f39ec1ab94afd9c4a0dd9c Mon Sep 17 00:00:00 2001 From: drh Date: Tue, 22 Jul 2003 12:41:59 +0000 Subject: [PATCH] Increment the version number and update the documentation in preparation for the 2.8.5 release. (CVS 1061) FossilOrigin-Name: c2115335de4abc25cbc1664d718dc3a6f70ebe6c --- VERSION | 2 +- manifest | 18 +++++++++--------- manifest.uuid | 2 +- www/changes.tcl | 11 +++++++++++ www/index.tcl | 6 ++++-- 5 files changed, 26 insertions(+), 13 deletions(-) diff --git a/VERSION b/VERSION index 2701a226a2..766d70806b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.8.4 +2.8.5 diff --git a/manifest b/manifest index 46f72a98e3..657c9e3257 100644 --- a/manifest +++ b/manifest @@ -1,9 +1,9 @@ -C Add\sexperimental\ssqlite_reset()\sAPI\s(allows\spre-compiled\squeries)\s(CVS\s1060) -D 2003-07-22T09:24:44 +C Increment\sthe\sversion\snumber\sand\supdate\sthe\sdocumentation\sin\spreparation\nfor\sthe\s2.8.5\srelease.\s(CVS\s1061) +D 2003-07-22T12:41:59 F Makefile.in 9ad23ed4ca97f9670c4496432e3fbd4b3760ebde F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906 F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd -F VERSION b41e2dbcab4b2827d4827f8bc1b907f5327d6098 +F VERSION ab111ee5fce506ec6965461e6c89d8b9eb112e85 F aclocal.m4 ff32919e75f42b2d4213fe3c6f79dd0fe47f7769 F config.guess 831db445a8ae31d1f773fce85e14c16c8677417d F config.sub 975368989965310238930ecf8e7f06a23061dbb1 @@ -149,7 +149,7 @@ F www/arch.png 82ef36db1143828a7abc88b1e308a5f55d4336f4 F www/arch.tcl 44b589fc01d6829d43447ab40588b00aec5b9734 F www/audit.tcl 90e09d580f79c7efec0c7d6f447b7ec5c2dce5c0 F www/c_interface.tcl acacd31d4441de900e09ee48b5ffdef0162d8dc3 -F www/changes.tcl 424e5fff460670f1249270ce69b91e8b1f036aa6 +F www/changes.tcl 45e8910d4a7daeb5aa219d9e72a3a4a0d06973df F www/conflict.tcl 81dd21f9a679e60aae049e9dd8ab53d59570cda2 F www/datatypes.tcl 0cb28565580554fa7e03e8fcb303e87ce57757ae F www/download.tcl 0932d7f4f0e8b2adbbd22fac73132f86e43ab4a9 @@ -157,7 +157,7 @@ F www/dynload.tcl 02eb8273aa78cfa9070dd4501dca937fb22b466c F www/faq.tcl 88d3b95d9cd8e374772daa3a646c4d107e7f3e9b F www/fileformat.tcl ae6ccf3ffddb180a5af173cd6ee102169629762b F www/formatchng.tcl ca6cc1cb1bef9bc36f0619049d3c95e749bc6983 -F www/index.tcl 30adca2dc9aba782f9188c29165129789df521f0 +F www/index.tcl 0765e28322b5602bbbcff24b587b09666544c2d8 F www/lang.tcl 5f39bbda1ba38a28f18f97bd98c81f40355393b2 F www/mingw.tcl d96b451568c5d28545fefe0c80bee3431c73f69c F www/nulls.tcl 4ac1c9bbb8a20a76500d18d63b383f51bb7d8be7 @@ -168,7 +168,7 @@ F www/speed.tcl 2f6b1155b99d39adb185f900456d1d592c4832b3 F www/sqlite.tcl 3c83b08cf9f18aa2d69453ff441a36c40e431604 F www/tclsqlite.tcl 1db15abeb446aad0caf0b95b8b9579720e4ea331 F www/vdbe.tcl 9b9095d4495f37697fd1935d10e14c6015e80aa1 -P 6ccb92b14f2e6e01bb60dac10331fa7be0b4525e -R 804ca90e7b76ecef82e1c1554a328a4e -U danielk1977 -Z 5f47bcd4ce11d578c0e1428e96d9a20d +P 1d2fcb017811db90e85d63f2ca76867c00ab8f1b +R ed4427abea3c4e64d4335fc950552416 +U drh +Z 4a66bb95ed5ea740f62ddde8c184fe36 diff --git a/manifest.uuid b/manifest.uuid index 2f74612a7b..8cd238cfab 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -1d2fcb017811db90e85d63f2ca76867c00ab8f1b \ No newline at end of file +c2115335de4abc25cbc1664d718dc3a6f70ebe6c \ No newline at end of file diff --git a/www/changes.tcl b/www/changes.tcl index b6183a1c99..93f6f203e8 100644 --- a/www/changes.tcl +++ b/www/changes.tcl @@ -25,6 +25,17 @@ proc chng {date desc} { puts "

" } +chng {2003 July 22 (2.8.5)} { +
  • Make LIMIT work on a compound SELECT statement.
  • +
  • LIMIT 0 now shows no rows. Use LIMIT -1 to see all rows.
  • +
  • Correctly handle comparisons between an INTEGER PRIMARY KEY and + a floating point number.
  • +
  • Fix several important bugs in the new ATTACH and DETACH commands.
  • +
  • Updated the NULL-handling document.
  • +
  • Allow NULL arguments in sqlite_compile() and sqlite_step().
  • +
  • Many minor bug fixes
  • +} + chng {2003 June 29 (2.8.4)} {
  • Enhanced the "PRAGMA integrity_check" command to verify indices.
  • Added authorization hooks for the new ATTACH and DETACH commands.
  • diff --git a/www/index.tcl b/www/index.tcl index c3b59af9ed..df493a258d 100644 --- a/www/index.tcl +++ b/www/index.tcl @@ -1,7 +1,7 @@ # # Run this TCL script to generate HTML for the index.html file. # -set rcsid {$Id: index.tcl,v 1.75 2003/07/16 17:10:45 drh Exp $} +set rcsid {$Id: index.tcl,v 1.76 2003/07/22 12:42:00 drh Exp $} puts { SQLite: An Embeddable SQL Database Engine @@ -63,7 +63,9 @@ puts {

    Features

    C/C++ interface requires the use of only three functions and one opaque structure.
  • TCL bindings included. - Bindings for many other languages available separately.
  • + Bindings for many other languages +