Revision history for Perl extension ExtUtils::XSpp.

0.11  Mon May  3 20:16:23 CEST 2010
	- Released 0.10_02 as 0.11.

0.10_02  Tue Apr 27 08:06:04 CEST 2010
	- Fix packaging error.

0.10_01  Mon Apr 26 21:44:25 CEST 2010
	- Improved and documented the syntax for complex "parsed" typemaps.
	  The old syntax will be removed soon.
	- Allow '&' and '|' operators in the default value of functions and
	  methods.
	- Do not generate XS code for the private and protected members of
	  a class.

0.10  Wed Apr 14 19:20:00 CET 2010
	- Now requires ExtUtils::ParseXS 0.2202.
	- C++ Exceptions can now be handled with code much like typemaps
	  %exception{Name}{Exception}...
	  int MethodFoo() %catch{Name};
	  Detailed documentation in ExtUtils::XSpp::Exception.
	- Grammar simplifications.
	- Fixed 'methods' argument of Class node constructor.
	- Parse 'static' as a synonym of 'package_static'.
	- Parse pure virtual functions correctly.

0.09  Wed Feb 10 19:20:00 CET 2010
	- Automatically include an #include <exception> into the output
	  for the exception handling.
	- Documentation for ExtUtils::XSpp::Node and subclasses.
	- Split ExtUtils/XSpp/Node.pm into separate per-class files.

0.08  Fri Feb  5 19:00:00 CET 2010
	- Catch all C++ exceptions in the generated wrapper XS.
	  The exceptions are turned into plain Perl croak() calls
	  for now but may be upgraded to configurable exception
	  objects later. (Steffen Mueller)

0.07  Fri Jan 22 18:07:10 CET 2010
	- Fix issue with references as method arguments that have
	  template types. (Steffen Mueller)

0.06  Wed Jan 13 20:28:27 CET 2010
	- When parsing a class declaration, automatically add a typemap
	  for the class.
	- Add default typemaps for basic C types (integral, floating point
	  and char*).
	- Automatically setup Perl inheritance for derived C++ classes.
	- Support template types in function/method parameters and in typeamaps.
	- Add command line options to run xsubpp directly from xspp.

0.05  Sun Sep 20 14:29:16 CEST 2009
	- Move the implementation of xspp to ExtUtils::XSpp::Cmd.

0.04
	- Let XS' length() feature pass through. (Steffen Mueller)
	- If the length() feature is used, generate ANSI style
	  XSUBs instead of the default K.-R. style. (Steffen Mueller)
	- Add parsing deep class hierarchies. (Steffen Mueller)
	- Fix two-part types (eg. unsigned int). (Steffen Mueller)
	- Non-zero exit value on failure for more graceful build errors.
	  (Steffen Mueller)

0.03
	- Include a renamed Parse::Yapp::Driver to eschew
	  a dependency. (Steffen Mueller)

0.02
	- Added an example distribution (Steffen Mueller).

0.01  Wed Jun 17 21:01:00 CEST 2009
	- Extracted from wxPerl source tree.
	- Pass through C and C++ comments.
	- Added test suite.