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