fiddle with ilmari's changelog entry and bump version
[gitmo/MooseX-Getopt.git] / ChangeLog
1 Revision history for Perl extension MooseX-Getopt
2
3 0.18 Thu. April 9 2009
4         * MooseX::Getopt::Dashes
5                 - New module, for converting undercores to dashes (ilmari)
6
7 0.17 Wed. April 8 2009
8   * MooseX::Getopt
9                 - work with latest Moose (hdp)
10
11         ~ unify module version numbers with dist version (hdp)
12
13 0.16 Tue. February 17 2009
14         * t/
15                 - run pod tests only if RELEASE_TESTING env var is set
16
17 0.15 Sat. July 26 2008
18         * MooseX::Getopt::OptionTypeMap
19           - Accept type constraint objects in the type mapping, not just names
20
21 0.14 Thurs. July 10, 2008
22         * MooseX::Getopt::OptionTypeMap
23           - Change 'Float' which doesn't exist to 'Num' which does (perigrin)
24          
25         * MooseX::Getopt
26           - removed the default handling with Getopt::Long::Descriptive
27             as it would override constructor parameters and that was 
28             bad. Besides, Moose will just DWIM on this anyway. (stevan)
29             - added test for it (stevan)
30
31     * t/
32       - fixed Getopt::Long::Descriptive specific tests to only run 
33         if Getopt::Long::Descriptive is there (stevan)
34
35 0.13 Saturday, May 24, 2008
36     * MooseX::Getopt
37       - Commandline option shouldn't be required in the
38         case that the given "required" attribute has
39         been loaded from config (MooseX::ConfigFromFile)
40       - Support for MooseX::ConfigFromFile shouldn't require
41         that role be added at the same level as Getopt.
42       - fixed miscapitalization of NoGetopt in the docs
43       - added links to the traits in the docs
44       
45     ~ converted to Module::Install instead of 
46       Module::Build
47
48 0.12 Fri. March 14, 2008
49     ~~ updated copyright dates ~~
50
51     - upped the Moose dependency to support
52       the custom metaclass traits
53     - added Getopt::Long::Descriptive as an
54       optional dependency
55
56     * MooseX::Getopt
57       MooseX::Getopt::Meta::Attribute
58       MooseX::Getopt::Meta::Attribute::Trait
59       MooseX::Getopt::Meta::Attribute::NoGetopt
60       MooseX::Getopt::Meta::Attribute::Trait::NoGetopt
61       - added support for custom metaclass traits
62         - added tests for this
63
64 0.11 Sun. Jan. 27, 2008
65     * MooseX::Getopt
66       - Commandline option shouldn't be required in the
67         case that the given "required" attribute has
68         a default or a builder method.
69
70 0.10 Wed. Jan. 23, 2008
71     * MooseX::Getopt
72       - Support default configfile attribute when
73         used with MooseX::ConfigFromFile-based roles
74
75 0.09 Tues. Jan. 22, 2008
76     * MooseX::Getopt
77       - Use Getopt::Long::Descriptive if it's available
78
79 0.08 Tues. Dec. 8, 2007
80     * MooseX::Getopt
81       - Added support for configfile loading via
82         MooseX::ConfigFromFile-based roles with
83         the -configfile commandline option.
84
85 0.07 Tues. Dec. 4, 2007
86     * MooseX::Getopt::Meta::Attribute::NoGetopt
87       - fixed miscapitalization of NoGetopt in the docs
88
89 0.06 Fri. Nov. 23, 2007
90     * MooseX::Getopt
91       - refactored &new_with_option some so that
92         this will work better with other Getopt
93         modules (nuffin)
94
95     + MooseX::Getopt::Strict
96       - version of MooseX::Getopt which requires
97         you to specify which attributes you want
98         processed explicity
99         - added tests for this
100
101     + MooseX::Getopt::Meta::Attribute::NoGetopt
102       - a custom meta-attribute which can be
103         used to specify that an attribute should
104         not be processed
105         - added tests for this
106
107 0.05 Tues. July 3, 2007
108     * MooseX::Getopt::OptionTypeMap
109       - added some checks to make sure that the type
110         constraints are found properly and to give
111         better diagnostics
112
113 0.04 Tues. June 26, 2007
114     * MooseX::Getopt::OptionTypeMap
115       - Added support for subtype constraint inference
116         from parent types
117         - added tests and docs for this
118     * MooseX::Getopt
119       - Added extra_argv attribute
120         - added tests and docs for this
121       - We now unmangle the Getopt::Long-mangled @ARGV
122         - added tests and docs for this
123       - We now throw an exception from new_with_options
124         if Getopt fails due to bad arguments.
125         - added tests and docs for this
126
127 0.03 Wed. May 2nd, 2007
128     ~ downgraded the Getopt version requirement
129       to 2.35 as per RT #26844
130     ~ adding blblack to the authors list
131
132     * MooseX::Getopt
133       - doc update to show simple way to of excluding
134         an attribute, but not having accessors with
135         underscores (thanks to Zaba on #moose for this)
136     * MooseX::Getopt::Meta::Attribute
137       - tightening up the type constraint in the
138         cmd_alias coercion to only accept strings
139
140 0.02 Friday, April 6, 2007
141     * MooseX::Getopt
142       - added the ARGV attribute (thanks to blblack)
143         - added tests and docs for this
144
145     * MooseX::Getopt::Meta::Attribute
146       - added the cmd_aliases attribute (thanks to blblack)
147         - added tests and docs for this
148       - added support for Moose 0.19's custom
149         attribute metaclass alias registry.
150         - added tests and docs for this
151
152 0.01 Friday, March 9, 2007
153     - module released to CPAN