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