Author: wyoung
Date: Fri Mar  3 14:24:28 2006
New Revision: 1211

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=1211&view=rev
Log:
v2.1.0.alpha2

Modified:
    branches/v2.1-bakefile/ChangeLog
    branches/v2.1-bakefile/configure.ac

Modified: branches/v2.1-bakefile/ChangeLog
URL: 
http://svn.gna.org/viewcvs/mysqlpp/branches/v2.1-bakefile/ChangeLog?rev=1211&r1=1210&r2=1211&view=diff
==============================================================================
--- branches/v2.1-bakefile/ChangeLog (original)
+++ branches/v2.1-bakefile/ChangeLog Fri Mar  3 14:24:28 2006
@@ -1,3 +1,53 @@
+2.1.0.alpha2, 2006.03.03 (not yet released)
+
+       o Converted automake and makemake files to their equivalents in
+         Bakefile format.
+
+       o Updated libmysqlclient.def for newer versions of MySQL.  (Fixes
+         build errors having to do with mysql_more_results() and
+         mysql_next_result().
+
+       o Replaced final use of strcpy() with strncpy().
+
+
+2.0.7, 2005.11.23 (r1147)
+
+       o Added explicit mysqlpp namespace qualifiers to generated code in
+         custom*.h so you can use SSQLS in places where it doesn't make
+         sense to say "using namespace mysqlpp" before the declaration.
+         Also updated some of the examples to not have this "using"
+         declaration to make it clear to users that it isn't needed, if you
+         want to use explicit namespace qualifiers as well.  Thanks for
+         this patch to Chris Frey.
+
+       o Removed an apparently useless unlock() call from ResUse; there is
+         no nearby lock() call, so if this unlock() is in fact necessary,
+         it shouldn't be here anyway, because the two calls should be
+         nearby each other.  Thanks for this patch to Chris Frey.
+
+       o Fixed Query ostream initialization bug affecting SunPro CC (at
+         least).  While this bug violates the Standard, it doesn't affect
+         many real compilers because they don't enforce this rule.  Fixed
+         by Chris Frey.
+
+       o Previously, we only used the C99 style "long long" support when
+         building under GNU CC.  This is now the default.  This should
+         allow the code to work under SunPro CC.
+
+       o Added another dynamic cast needed for proper Query ostream
+         subclass overloading under VC++.  (7.1 at least...)
+
+       o Detecting whether MySQL is built with SSL support on platforms
+         using autotools.  Needed on some old Sun systems, for instance.
+         Thanks for this patch to Ovidiu Bivolaru.
+
+       o Fixed a potential memory bug in ColData's conversion to SQL null.
+
+       o Many minor packaging tweaks.  (README clarifications, file
+         permission fixes, better adherence to GNU packaging standards,
+         etc.)
+
+       
 2.0.6, 2005.09.28 (r1123)
 
        o Fixed makemake.bat so it works on cmd.exe, not just 4NT.

Modified: branches/v2.1-bakefile/configure.ac
URL: 
http://svn.gna.org/viewcvs/mysqlpp/branches/v2.1-bakefile/configure.ac?rev=1211&r1=1210&r2=1211&view=diff
==============================================================================
--- branches/v2.1-bakefile/configure.ac (original)
+++ branches/v2.1-bakefile/configure.ac Fri Mar  3 14:24:28 2006
@@ -14,7 +14,7 @@
 # USA
 
 # Standard autotools stuff
-AC_INIT(mysql++, 2.1.0.alpha1, [EMAIL PROTECTED], mysql++)
+AC_INIT(mysql++, 2.1.0.alpha2, [EMAIL PROTECTED], mysql++)
 AC_CONFIG_HEADER(config.h)
 AC_DISABLE_STATIC
 AC_CANONICAL_SYSTEM


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

Reply via email to