updated changelog and prepped for release
[gitmo/MooseX-Types-Structured.git] / Changes
1 Revision history for MooseX-Types-Structured
2
3 0.08    06 March 2009
4         - New Feature: slurpy method for when you want a structured type
5           constraint that allows trailing arguments of indeterminate length.
6           Please see the documentation and the '11-overflow.t' test for more.
7         - Documentation for above as well as a bunch of POD cleanups, spell
8           checks and improvements to formatting.
9         - Stevan Little submitted a sweet  update to the '10-recursion.t' test
10           that blows my mind.  Will probably form the core of a to be done set
11           of cookbook style PODs.  Worth looking at.
12         - First step at improving the error message you get when validation
13           fails.  A full error stacktrace is not in this release, but you now
14           at least get to see part of the offending value.
15
16 0.07    09 December 2008
17         - Fixed typo in previous changelog
18         - documentation improvements and updates
19         - increased version requirement for MooseX::Types so that we can take
20           advantage of the recursion support added.
21         - added test for recursion.
22
23 0.06    06 December 2008
24         - Added a 'helper' type constraint called Optional. See docs for more.
25         - added lots of tests to cover the API better, coverage and fixes for
26           the ->parameterize method in particular have been clarified.
27         - changes so that the type contraints are more forgiving when null
28           values appear in method calls.
29         - used ->make_immutable which should speed up the constraints.
30         - removed some unnecessary calls to use Moose when I wasn't using Moose.
31         - lots of little code cleanup work and more internal documentation.
32         - This version requires a newer Moose than previous versions.  The
33           Makefile.PL has been updated to reflect this.  This is a required
34           update.
35         
36 0.05    08 November 2008
37         - Fixed some wackiness in the documentation.
38         
39 0.04    07 November 2008
40         - Bumped minimum required versions of Moose and MooseX-Types to solve
41           problem with overloading and type constraint names (issue resolved
42           in Moose code.)
43         - Changed the way the required Perl version string is used to increase
44           compatibility and lowered minimum required Perl
45
46 0.03    29 October 2008
47         - Fixed incorrect Perl version string (rafl)
48         - hide the meta classes from pause.  This should clarify which POD is
49           the right one to read and also I want to discourage people from
50           subclassing that stuff since it will probably change
51         - various documentation cleanup
52         - new test 'example.t' with runable versions of the code in the example
53           POD section.
54         
55 0.02    28 October 2008
56         - cleared up some typos in the test suite
57         - Fixed some POD formatting issues, mostly some dumb tabs I ended up
58           with when I switched editors.  Added a bit more documentation
59         
60 0.01    27 October 2008
61         - Completed basic requirements, documentation and tests.