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