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