diff options
author | Murray Cumming <murrayc@src.gnome.org> | 2005-02-22 15:52:14 +0000 |
---|---|---|
committer | Murray Cumming <murrayc@src.gnome.org> | 2005-02-22 15:52:14 +0000 |
commit | 330e48084fbf7e2f2ad2990b29457c91d42878e0 (patch) | |
tree | b3b6b438c2ef227388961932ae705aa6d8a49368 | |
parent | 38f5eef7f82d1fd312a3dc9dcbd1bf40815facd2 (diff) | |
download | sigc++-libsigc++-2.0.10.tar.gz |
Increased versionlibsigc++-2.0.10
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | NEWS | 11 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 14 insertions, 1 deletions
@@ -1,3 +1,5 @@ +2.0.10: + 2005-02-20 Murray Cumming <murrayc@murrayc.com> * tests/test_slot.cc, test_disconnect.cc: #included <new> to avoid @@ -17,6 +17,17 @@ This version of libsigc++ needs GNU g++ 3.2 or higher to compile. *** ChangeLog summary: +2.0.10: + +* tests: Include <new> to avoid unresolved symbols on Tru64. + (Tim Mooney) +* When signal handlers are connected made during an emit + of the same signal, prevent them from being called in the + same emit, to prevent infinite loops. + (Neal E. Coombes) +* Performance improvement in a corner case. + (Neal E. Coombes). + 2.0.9: * sigc::bind() now works with the AIX and Tru64 compilers. diff --git a/configure.ac b/configure.ac index f7726e8..aefacb7 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ dnl dnl thus make format_package-0.0.1.tar.gz pushdef([FP_MAJOR_VERSION], [2]) pushdef([FP_MINOR_VERSION], [0]) -pushdef([FP_MICRO_VERSION], [9]) +pushdef([FP_MICRO_VERSION], [10]) pushdef([FP_EXTRA_VERSION], []) pushdef([FP_VERSION], FP_MAJOR_VERSION.FP_MINOR_VERSION.FP_MICRO_VERSION[]FP_EXTRA_VERSION) # package name, version, support contact, tarball name. |