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