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