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