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