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