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