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