2016-03-11  Murray Cumming  <murrayc@murrayc.com>

	2.7.2

2016-03-11  Murray Cumming  <murrayc@murrayc.com>

	test_accumulated(): Restructure this.

	To make it clearer and to keep the small tests more self-contained and
	separate.

2016-03-11  Murray Cumming  <murrayc@murrayc.com>

	test_signal: Add test_simple().

2016-03-11  Murray Cumming  <murrayc@murrayc.com>

	test_signal(): Restructure this.

	To make it clearer and to keep the small tests more self-contained and
	separate.

2016-03-11  Murray Cumming  <murrayc@murrayc.com>

	test_slot(): Restructure this.

	To make it clearer and to keep the small tests more self-contained and
	separate.

2016-03-10  Murray Cumming  <murrayc@murrayc.com>

	signal: make_slot(): Use non-deprecated constructor.

2016-03-10  Murray Cumming  <murrayc@murrayc.com>

	tests: Prefer the non-deprecated mem_fun(reference, func) form.

2016-03-10  Murray Cumming  <murrayc@murrayc.com>

	tests: Use std::ref() instead of deprecated sigc::ref().

2016-03-10  Murray Cumming  <murrayc@murrayc.com>

	examples: Don't use deprecated mem_fun(pointer, func).

2016-03-10  Murray Cumming  <murrayc@murrayc.com>

	examples build: Disable deprecated API.

2016-03-10  Murray Cumming  <murrayc@murrayc.com>

	mem_fun(): Deprecate mem_fun(pointer, func).

	Leaving just mem_fun(reference, func).
	See bug #763215

	The deprecated mem_fun() has been removed from libsigc+--3.0,
	so this is a chance to adapt code before switching to libsigc++-3.0.

2016-03-10  Chun-wei Fan  <fanchunwei@src.gnome.org>

	MSVC builds: Update sigc++ project

	Add the new source files and headers from adaptors/lambda, and re-order
	the source files list into alphabetical order.

2016-03-08  Murray Cumming  <murrayc@murrayc.com>

	Also ifdef out bound_argument<sigc::reference_wrapper>.

	And add a specialization for bound_argument<std::reference_wrapper>.

2016-03-08  Murray Cumming  <murrayc@murrayc.com>

	reference_wrapper: Include <functional>.

2016-03-08  Murray Cumming  <murrayc@murrayc.com>

	Deprecate sigc::ref() in favor of std::ref().

2016-03-07  Murray Cumming  <murrayc@murrayc.com>

	.doap: Correct the web site URL.

	Though we really must stop using sourceforge even for the web site.

2016-03-07  Murray Cumming  <murrayc@murrayc.com>

	Rename our .doap file.

2016-03-07  Murray Cumming  <murrayc@murrayc.com>

	Fix tiny typo in a comment.

2016-03-06  Murray Cumming  <murrayc@murrayc.com>

	docs: Refer to it as libsigc++, not libsigc++2.

2016-03-06  Murray Cumming  <murrayc@murrayc.com>

	website/README: Mention the new git repository.

2016-03-03  Murray Cumming  <murrayc@murrayc.com>

	SIGC_CXX_HAS_SUN_REVERSE_ITERATOR: Add std:: now that I removed the using std.

	See https://bugzilla.gnome.org/show_bug.cgi?id=762065#c2

2016-03-03  Murray Cumming  <murrayc@murrayc.com>

	C++11: Make all operator bool() explicit.

2016-03-03  Murray Cumming  <murrayc@murrayc.com>

	Remove now-unnecessary SIGC_CXX_HAS_NAMESPACE_STD() configure check.

	Bug #762065 (Kjell Ahlstedt)

2016-03-03  Murray Cumming  <murrayc@murrayc.com>

	Remove unused SIGC_CXX_SELF_REFERENCE_IN_MEMBER_INITIALIZATION() configure check.

	Bug #762065 (Kjell Ahlstedt)

2016-03-02  Kjell Ahlstedt  <kjell.ahlstedt@bredband.net>

	Improve the documentation of mem_fun()

	* sigc++/functors/macros/mem_fun.h.m4:
	* sigc++/functors/slot_base.h: Make it clear that mem_fun() does not return
	a slot, and 'auto s = sigc::mem_fun(....)' is not equivalent to
	'sigc::slot<....> s = sigc::mem_fun(....)'.
	The confusing documentation was noted by Andrejs Hanins on libsigc-list.

2016-03-01  Murray Cumming  <murrayc@murrayc.com>

	Add test_bind_as_slot.

	This tests sigc::bind()'s indirect use of adaptor_functor<>.
	I added this because this doesn't work yet in the variadic_bind branch.