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