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