Author: mysqlpp
Date: Sat Nov 22 04:36:23 2008
New Revision: 2423

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=2423&view=rev
Log:
v3.0.7

Modified:
    trunk/ChangeLog
    trunk/configure.ac
    trunk/mysql++.bkl

Modified: trunk/ChangeLog
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/ChangeLog?rev=2423&r1=2422&r2=2423&view=diff
==============================================================================
--- trunk/ChangeLog (original)
+++ trunk/ChangeLog Sat Nov 22 04:36:23 2008
@@ -1,3 +1,38 @@
+3.0.7, 2008.11.21 (r2423)
+
+    o Fixed bug where initting a Query with a query string and then
+      appending more to it with operator <<() would start overwriting
+      the beginning of the buffer.  Thanks for the fix go to Chris
+      Frey.
+
+    o Added String::empty(), to parallel std::string better.
+
+    o Added SQLTypeAdapter ctor for Null<String>, to allow SSQLS with
+      NULL BLOB columns.  Thanks for this patch go to Russell Robinson.
+
+    o Passing on "throw exceptions" flag in Query::storein() to the
+      temporary Row objects it creates.  (Should have done this
+      all along.)
+
+    o All MySQL++ classes with operator[]() and at() methods now
+      throw the new BadIndex exception on out of range indices now,
+      unconditionally.  Before, it was a mishmash of MySQL++-specific
+      mechanisms, std::range_error, and unchecked access.
+
+    o Fixed some bugs in load_jpeg and cgi_jpeg examples that prevented
+      them from working correctly on Windows.
+
+    o Squished some warnings and incompatibilities that caused
+      difficulty with Solaris CC.
+
+    o Several minor fixes to allow building on Cygwin again.
+
+    o Dedicated VC++ 2008 support.  (Not just a clone of VC++ 2005
+      project files in a different directory.)
+
+    o Lots of documentation improvements.
+
+
 3.0.6, 2008.08.16 (r2350)
 
     o Several fixes to allow thread-aware build on Solaris

Modified: trunk/configure.ac
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/configure.ac?rev=2423&r1=2422&r2=2423&view=diff
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Sat Nov 22 04:36:23 2008
@@ -14,7 +14,7 @@
 # USA
 
 # Standard autotools stuff
-AC_INIT(mysql++, 3.0.6, [EMAIL PROTECTED], mysql++)
+AC_INIT(mysql++, 3.0.7, [EMAIL PROTECTED], mysql++)
 AC_CONFIG_HEADER(config.h)
 AC_DISABLE_STATIC
 AC_CANONICAL_SYSTEM

Modified: trunk/mysql++.bkl
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/mysql%2B%2B.bkl?rev=2423&r1=2422&r2=2423&view=diff
==============================================================================
--- trunk/mysql++.bkl (original)
+++ trunk/mysql++.bkl Sat Nov 22 04:36:23 2008
@@ -53,7 +53,7 @@
     <dll id="mysqlpp">
       <dllname>mysqlpp$(DEBUG_SUFFIX)</dllname>
       <libname>mysqlpp$(DEBUG_SUFFIX)</libname>
-      <so_version>3.0.6</so_version>
+      <so_version>3.0.7</so_version>
 
       <sources>
         lib/beemutex.cpp


_______________________________________________
Mysqlpp-commits mailing list
[email protected]
https://mail.gna.org/listinfo/mysqlpp-commits

Reply via email to