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