Changeset: 78ffd68c00d8 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=78ffd68c00d8 Modified Files: .hgtags MonetDB.spec debian/changelog gdk/ChangeLog-Archive gdk/ChangeLog.Feb2013 java/ChangeLog-Archive java/ChangeLog.Feb2013 libversions Branch: default Log Message:
Merge with Feb2013 branch. diffs (167 lines): diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -523,3 +523,5 @@ df2cbb7845660d94dc484bab860b6893344be92a cb55e859a50e0d06a50cc9e4f6e377ddea7cc3aa Feb2013_7 df2cbb7845660d94dc484bab860b6893344be92a Feb2013_SP2_release e0139450d66e4fc02c7f5d1d9e6f92fc22d862df Feb2013_SP2_release +651ab160f8f9b591c0311d56e7a66e560390d2eb Feb2013_9 +b9ccba3754cda87e79cac9e5348e46f35a883845 Feb2013_SP3_release diff --git a/MonetDB.spec b/MonetDB.spec --- a/MonetDB.spec +++ b/MonetDB.spec @@ -27,7 +27,7 @@ Vendor: MonetDB BV <[email protected]> Group: Applications/Databases License: MPL - http://www.monetdb.org/Legal/MonetDBLicense URL: http://www.monetdb.org/ -Source: http://dev.monetdb.org/downloads/sources/Feb2013-SP2/%{name}-%{version}.tar.bz2 +Source: http://dev.monetdb.org/downloads/sources/Feb2013-SP3/%{name}-%{version}.tar.bz2 BuildRequires: bison BuildRequires: bzip2-devel @@ -722,6 +722,24 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/libmonet rm -fr $RPM_BUILD_ROOT %changelog +* Wed Jun 19 2013 Hannes Muehleisen <[email protected]> - 11.15.9-20130619 +- Rebuilt. + +* Sun Jun 9 2013 Fabian Groffen <[email protected]> - 11.15.9-20130619 +- java: Further improved setBigDecimal() method, based on patch by Ben Reilly + in bug #3290 + +* Thu May 23 2013 Fabian Groffen <[email protected]> - 11.15.9-20130619 +- java: Fixed bug where PreparedStatement.setBigDecimal() wouldn't format its + input well enough for the server causing odd errors. +- java: Allow PreparedStatement.setXXX() methods to be called with null + arguments, bug #3288 + +* Tue May 7 2013 Sjoerd Mullender <[email protected]> - 11.15.9-20130619 +- gdk: System calls to flush files to disks were added. This may cause + some slowdown, but it should provide better durability, especially + in the face of power failures. + * Fri Apr 26 2013 Sjoerd Mullender <[email protected]> - 11.15.7-20130426 - Rebuilt. diff --git a/debian/changelog b/debian/changelog --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,33 @@ +monetdb (11.15.9-20130619) unstable; urgency=low + + * Rebuilt. + + -- Hannes Muehleisen <[email protected]> Wed, 19 Jun 2013 15:21:39 +0200 + +monetdb (11.15.9-20130619) unstable; urgency=low + + * java: Further improved setBigDecimal() method, based on patch by Ben Reilly + in bug #3290 + + -- Fabian Groffen <[email protected]> Sun, 9 Jun 2013 15:21:38 +0200 + +monetdb (11.15.9-20130619) unstable; urgency=low + + * java: Fixed bug where PreparedStatement.setBigDecimal() wouldn't format its + input well enough for the server causing odd errors. + * java: Allow PreparedStatement.setXXX() methods to be called with null + arguments, bug #3288 + + -- Fabian Groffen <[email protected]> Thu, 23 May 2013 15:21:38 +0200 + +monetdb (11.15.9-20130619) unstable; urgency=low + + * gdk: System calls to flush files to disks were added. This may cause + some slowdown, but it should provide better durability, especially + in the face of power failures. + + -- Sjoerd Mullender <[email protected]> Tue, 7 May 2013 15:21:38 +0200 + monetdb (11.15.7-20130426) unstable; urgency=low * Rebuilt. diff --git a/gdk/ChangeLog-Archive b/gdk/ChangeLog-Archive --- a/gdk/ChangeLog-Archive +++ b/gdk/ChangeLog-Archive @@ -1,6 +1,11 @@ # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY # This file contains past ChangeLog entries +* Tue May 7 2013 Sjoerd Mullender <[email protected]> - 11.15.9-20130619 +- System calls to flush files to disks were added. This may cause + some slowdown, but it should provide better durability, especially + in the face of power failures. + * Mon Apr 8 2013 Sjoerd Mullender <[email protected]> - 11.15.5-20130412 - Fixed a bug in case the candidate list is dense and completely outside the range of the bat being worked upon. diff --git a/gdk/ChangeLog.Feb2013 b/gdk/ChangeLog.Feb2013 --- a/gdk/ChangeLog.Feb2013 +++ b/gdk/ChangeLog.Feb2013 @@ -1,8 +1,3 @@ # ChangeLog file for MonetDB # This file is updated with Maddlog -* Tue May 7 2013 Sjoerd Mullender <[email protected]> -- System calls to flush files to disks were added. This may cause - some slowdown, but it should provide better durability, especially - in the face of power failures. - diff --git a/java/ChangeLog-Archive b/java/ChangeLog-Archive --- a/java/ChangeLog-Archive +++ b/java/ChangeLog-Archive @@ -1,6 +1,16 @@ # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY # This file contains past ChangeLog entries +* Sun Jun 9 2013 Fabian Groffen <[email protected]> - 11.15.9-20130619 +- Further improved setBigDecimal() method, based on patch by Ben Reilly + in bug #3290 + +* Thu May 23 2013 Fabian Groffen <[email protected]> - 11.15.9-20130619 +- Fixed bug where PreparedStatement.setBigDecimal() wouldn't format its + input well enough for the server causing odd errors. +- Allow PreparedStatement.setXXX() methods to be called with null + arguments, bug #3288 + * Thu Apr 11 2013 Sjoerd Mullender <[email protected]> - 11.15.5-20130412 - The pre-compiled .jar files are now created using Java 7 instead of Java 6. diff --git a/java/ChangeLog.Feb2013 b/java/ChangeLog.Feb2013 --- a/java/ChangeLog.Feb2013 +++ b/java/ChangeLog.Feb2013 @@ -1,13 +1,3 @@ # ChangeLog file for java # This file is updated with Maddlog -* Sun Jun 9 2013 Fabian Groffen <[email protected]> -- Further improved setBigDecimal() method, based on patch by Ben Reilly - in bug #3290 - -* Thu May 23 2013 Fabian Groffen <[email protected]> -- Fixed bug where PreparedStatement.setBigDecimal() wouldn't format its - input well enough for the server causing odd errors. -- Allow PreparedStatement.setXXX() methods to be called with null - arguments, bug #3288 - diff --git a/libversions b/libversions --- a/libversions +++ b/libversions @@ -36,13 +36,13 @@ # version of the GDK library (subdirectory gdk; also includes # common/options and common/utils) -GDK_VERSION=9:3:0 +GDK_VERSION=9:4:0 # version of the MAPI library (subdirectory clients/mapilib) MAPI_VERSION=6:5:0 # version of the MONETDB5 library (subdirectory monetdb5, not including extras) -MONETDB5_VERSION=14:3:0 +MONETDB5_VERSION=14:4:0 # version of the STREAM library (subdirectory common/stream) -STREAM_VERSION=4:5:1 +STREAM_VERSION=4:6:1 _______________________________________________ checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
