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