2.0.10:

2005-02-20  Murray Cumming  <murrayc@murrayc.com>

	* tests/test_slot.cc, test_disconnect.cc: #included <new> to avoid 
	an unresolved symbol error with the Tru64 compiler. Solution found by 
	Tim Mooney in bug #161503.

2005-02-20  Martin Schulze  <mschulze@cvs.gnome.org>

	* sigc++/signal_base.h: Add some documentation.

2005-02-20  Martin Schulze  <mschulze@cvs.gnome.org>

	* sigc++/signal_base.cc: Reset deferred_ flag to false in
	signal_impl::sweep() (Neal E. Coombes). Partly fixes bug #167714.

2005-02-11  Martin Schulze  <mschulze@cvs.gnome.org>

	* docs/manual/Makefile.am: Set the correct group in post-html.

2005-02-11  Murray Cumming  <murrayc@murrayc.com>

	* docs/website/doc.shtml: Fix typo in url for reference docs. Found by 
	James Lin.

2005-02-06  Murray Cumming  <murrayc@murrayc.com>

	* sigc++/signal_base.h: temp_slot_list::begin(), end(): Actually 
	return the iterators.

2005-02-03  Neal E. Coombes <nealc@trdlnk.com>

	* sigc++/signal_base.h: Add temp_slot_list struct to facilitate
	allowing new connections to a signal during an emittion without
	affecting that emittion.
	* sigc++/macros/signal.h.m4: Use the new struct temp_slot_list to
	prevent connections made during an emittion from being called in the
	same emittion (which has the potential of causing things like
	infinite loops).  This guarantees an emittion will be finite, as well
	as maintaining any order of emittion guarantees that may have already
	been in place.