Author: wyoung
Date: Sun Mar 15 22:20:35 2015
New Revision: 2769

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=2769&view=rev
Log:
MySQL++ 3.2.2

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

Modified: trunk/ChangeLog
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/ChangeLog?rev=2769&r1=2768&r2=2769&view=diff
==============================================================================
--- trunk/ChangeLog     (original)
+++ trunk/ChangeLog     Sun Mar 15 22:20:35 2015
@@ -1,3 +1,33 @@
+3.2.2, 2015.03.15 (r2769)
+
+    o The DBDriver::operator= would leak a live connection if you
+      assigned a disconnected DBDriver to it.  Patch by Quentin Armitage.
+
+    o Plugged a potential DBDriver instance leak in Connection ctor.
+      Patch by Yury Alekseev.
+
+    o Explicitly #including algorithm.h in examples/multiquery.cpp for
+      std::max().
+
+    o Added missing "break;" statements in Transaction ctor taking an
+      isolation level parameter, which caused only the last one to do
+      the right thing.  Problem noticed by Tony Whyman, fix by me.
+
+    o The bootstrap script now checks for the existence of needed build
+      tools before trying to use them.  This lets us emit a clearer
+      error message than the shell will.  Original patch by Adrian
+      Cornish.
+
+    o Fixed a build problem related to std::min/max with Visual C++ 2013
+      due to a change in the definitions provided by its header files.
+
+    o Tracked several changes made to Connector/C made since 3.2.1.
+
+    o Assorted documentation updates.
+
+    o Generating HTML with UTF-8 encoding, not 8859-1
+
+
 3.2.1, 2013.12.10 (r2756)
 
     o Connection copy ctor wasn't copying the "throw exceptions"

Modified: trunk/configure.ac
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/configure.ac?rev=2769&r1=2768&r2=2769&view=diff
==============================================================================
--- trunk/configure.ac  (original)
+++ trunk/configure.ac  Sun Mar 15 22:20:35 2015
@@ -14,7 +14,7 @@
 # USA
 
 # Standard autotools stuff
-AC_INIT(mysql++, 3.2.1, [email protected], mysql++)
+AC_INIT(mysql++, 3.2.2, [email protected], mysql++)
 AC_CONFIG_HEADER(config.h)
 AC_CONFIG_MACRO_DIR([config])
 AC_CANONICAL_SYSTEM

Modified: trunk/mysql++.bkl
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/mysql%2B%2B.bkl?rev=2769&r1=2768&r2=2769&view=diff
==============================================================================
--- trunk/mysql++.bkl   (original)
+++ trunk/mysql++.bkl   Sun Mar 15 22:20:35 2015
@@ -62,7 +62,7 @@
     <dll id="mysqlpp">
       <dllname>mysqlpp$(DEBUG_SUFFIX)</dllname>
       <libname>mysqlpp$(DEBUG_SUFFIX)</libname>
-      <so_version>3.2.1</so_version>
+      <so_version>3.2.2</so_version>
 
       <sources>
         lib/beemutex.cpp


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

Reply via email to