May 8, 2003 Ron Steinke <rsteinke@w-link.net>

	* Set versioning info for 0.2.0 release

May 5, 2003 Ron Steinke <rsteinke@w-link.net>

	* Turns out you really do need to #include
	  XSUB.h for perl 5.8

May 5, 2003 Ron Steinke <rsteinke@w-link.net>

	* Added an 'extern PerlInterpreter *my_perl;' declaration
	  to keep perl 5.8 happy.

May 5, 2003 Ron Steinke <rsteinke@w-link.net>

	* Moved sigc++ check after perl check in
	  configure.in, to avoid possible
	  'C complier confused by C++ libs' errors

May 5, 2003 Ron Steinke <rsteinke@w-link.net>

	* Added a configure check for libperl

May 5, 2003 Ron Steinke <rsteinke@w-link.net>

	* autogen.sh/configure.in cleanups

December 2, 2002 Ron Steinke <rsteinke@w-link.net>

	* Fixed up some #include problems, and an error in
	  signal_array.h.m4

December 2, 2002 Ron Steinke <rsteinke@w-link.net>

	* Switched over to using pkg-config to export our CFLAGS, LIBS
	* Now correctely obtain macro directory for libsigc++ 1.2,
	  fixed code that got broken due to a change in the LIST() macro
	* Bumped version number to 0.2, so SigC module can
	  correctly distinguish sigcperl-config vs. pkg-config
	  when trying to figure out where to get its compile flags

November 29, 2002 Ron Steinke <rsteinke@w-link.net>

	* Converted to using libsigc++-1.2. Since the SigC::convert()
	  code copied out of 1.0 wasn't working properly, ripped
	  it out and used the (significantly different) adaptor
	  code in 1.2

November 29, 2002 Ron Steinke <rsteinke@w-link.net>

	* Tagged and released version 0.1.3, the final libsigc++-1.0
	  version before going to 1.2

August 26, 2002	Ron Steinke <rsteinke@w-link.net>

	* Added a check in slot creating that a hash reference is really
	  a blessed object

August 21, 2002	Ron Steinke <rsteinke@w-link.net>

	* Improved WrapArraySignal() to work with signals
	  which emit multiple arguments, as long as the last
	  is a container

August 20, 2002	Ron Steinke <rsteinke@w-link.net>

	* Fixed WrapSignal() to work with signals with
	  user-defined marshallers

August 15, 2002	Ron Steinke <rsteinke@w-link.net>

	* Added some macros and a function so people who
	  write their own connect functions can pass
	  a list of arguments and have a slot extracted
	  in the same way that SigC::Signal::connect()
	  works
	* Incorporated the code for SigC::convert()
	  directly into the library, so that we should
	  be able to work with libsigc++-1.2
	* Bumped version number to 0.1.2

July 17, 2002	Ron Steinke <rsteinke@w-link.net>

	* Removed some ArgBox and GetSV templates,
	  in favor of code to be generated from module
	  typemaps
	* Added WrapArraySignal() which wraps a signal
	  which emits an STL container of something
	  in such a way that Perl is passed a list
	  of the container arguments
	* Added a template push_back() function to
	  Data, implemented with GetSV()

June 20, 2002	Ron Steinke <rsteinke@w-link.net>

	* Bumped version number to 0.1.1

June 17, 2002	Ron Steinke <rsteinke@w-link.net>

	* Changed WrapSignal to return a SignalBase*
	  instead of an SV*, got rid of WrapConnection.
	  Module writers should set the CLASS variable
	  and use the typemap to return objects in these
	  blessed classes.

June 17, 2002	Ron Steinke <rsteinke@w-link.net>

	* Found the cause of an obscure problem;
	  Perl sometimes defines convert as Perl_convert,
	  which really causes problems when you try
	  to use SigC::convert. I undefined it in
	  signal_wrap.h.m4, Perl didn't seem to mind.
	* Cleanups to generic blessed class wrappers
	  in convert.h
	* Changed SignalBase::connect() to take a
	  const Slot& instead of a Slot&

June 16, 2002	Ron Steinke <rsteinke@w-link.net>

	* Fixed a bug that prevented Slot from accepting
	  a string containing the name of the function to call.
	* Improved support of ArgBox<> for generic blessed classes.

June 16, 2002	Ron Steinke <rsteinke@w-link.net>

	* Rolled the 0.1.0 tarball

June 6, 2002	Ron Steinke <rsteinke@w-link.net>

	* Separated the library and module source trees.
	  This removes the need for autoconf <-> MakeMaker
	  glue code.

June 5, 2002	Ron Steinke <rsteinke@w-link.net>

	* Bug fixes, got the rewrite working
	* Added Signal::slot(), did some architectural changes
	  to make this possible
	* Rolled the 0.0.2 tarball

May 23, 2002	Ron Steinke <rsteinke@w-link.net>

	* Complete rewrite, relying heavily on SigC::convert()
	* Signal::emit(), Slot::call() and Signal::new() written

April 28, 2002	Ron Steinke <rsteinke@w-link.net>

	* Got autoconf/automake and MakeMaker cooperating somewhat
	* Fixed up configure to check for perl properly
	* Rolled the 0.0.1 tarball

April 25, 2002	Ron Steinke <rsteinke@w-link.net>

	* Basic library architecture is now there. The perl API classes
	  SigC::Slot and SigC::Signal wrap the C++ API classes
	  SigCPerl::PerlSlot and SigCPerl::PerlSignalBase.
	  The perl API class SigC::Connection wraps the libsigc++
	  class of the same name.

April 4, 2002	Ron Steinke <rsteinke@w-link.net>

	* started setting up auto*, basic work on the
	  code started two days ago
