automatically add the version to the Changes file, to prevent more releases with...
[gitmo/MooseX-Getopt.git] / Changes
1 Revision history for Perl extension MooseX-Getopt
2
3  {{$NEXT}}
4  - reformatted the Changes file, with the help of CPAN::Changes, to something
5    a little more standard.
6
7 0.41      2012-04-14 18:36:00 PDT-0700
8  - Now bails with exit status 0, rather than dying, when printing
9    --usage/--help information. (Karen Etheridge)
10
11 0.40      2012-04-13
12  - Fix tests when MooseX::ConfigFromFile is installed, with
13    Getopt::Long::Descriptive >= 0.091. RT#76287
14  - Pod fix from debian. Salvatore Bonaccorso <carnil@debian.org> RT#74681
15  - Spelling fix from debian. Jonathan Yu <jawnsy@cpan.org> RT#74681
16
17 0.39      2012-02-03
18  - Fix argument parsing in process_argv when used with ConfigFromFile so
19    that -v can be used as expected, rather than being grabbed as --version
20
21 0.38      2011-12-23
22  - More documentation on Getopt::Long settings and how they alter this
23    role's behaviour, in particular with regards to extra_argv capturing.
24    (Karen Etheridge)
25
26 0.37      2011-03-30
27  - Fix missing dependency. (RT#67077)
28
29 0.36      2011-03-29
30  - Fix dist.ini 'Prereq' into 'Prereqs' (Damien Krotkine)
31  - MooseX::Getopt::GLD
32    - change it to a MooseX::Role::Parameterized, so that it accepts
33      'getopt_conf' parameter (Damien Krotkine)
34
35 0.35      2011-02-09
36  - Fix missed change from Test::Exception to Test::Fatal
37
38 0.34      2011-02-08
39  - The test suite now uses Test::Fatal instead of Test::Exception. (Karen
40    Etheridge)
41  - Move most of new_with_options logic into separate publically accessible
42    process_argv method, so that arg processing can be done without actually
43    creating object (Jonathan Swartz)
44
45 0.33      2010-08-26
46  - Remove Test::Most from newly added test (RT#60766)
47
48 0.32      2010-08-26
49  - Fix handling of Union types (RT#58417)
50
51 0.31      2010-07-07
52  - Fix issue causing tests to fail if MooseX::SimpleConfig isn't installed.
53
54 0.30      2010-07-06
55  - MooseX::Getopt::Basic
56    - uses attribute insertion order when determining the order in which
57      options are documented in the usage (e.g. in $obj->usage->text). (Karen
58      Etheridge)
59
60  - MooseX::Getopt::Basic
61    - store the usage object to the usage attr (RT#58715)
62    - properly checks whether the *option* --help, --usage, or --? were used,
63      rather than the attribute 'help', 'usage' or '?' were set
64  - MooseX::Getopt::GLD
65    - add the usage attribute for storing the Getopt::Long::Descriptive::Usage
66      object, and the help attribute for storing --help, --usage and --? state
67  (RT#47865, RT#56783, RT#52474).  (Karen Etheridge)
68
69  - MooseX::Getopt::Basic
70    - Disable auto_help config in Getopt::Long, to avoid calling into pod2usage
71      when the --help option is used while MooseX::ConfigFromFile is in use
72      (the intent is just to fetch the value of the configfile option)
73      (RT#57683). (Karen Etheridge)
74
75 0.29      2010-06-15
76  - Fix repository metadata. Thanks Robert Bohne for noticing!
77
78 0.28      2010-06-05
79  - MooseX::Getopt::Strict
80    - Make it work with Getopt attribute traits in addition to attribute
81      metaclasses.
82  - Switch from Module::Install to Dist::Zilla.
83
84 0.27      2010-02-10
85  - Makefile.PL
86    - Bump dependency to Getopt::Long::Descriptive to 0.081 in an attempt to
87      avoid test failures.
88  - MooseX::Getopt::Dashes
89    - Document that using a cmd_flag argument to attributes can be used to
90      override the tr/_/-/ replacement ::Dashes does on attribute names
91
92 0.26      2009-12-10
93  - MooseX::Getopt::Basic
94    - Fix bug with attribute names containing upper case letters.
95  - Test suite
96    - Add t/106_no_ignore_case.t for testing the compatibility with
97      no_ignore_case
98
99 0.25      2009-11-26
100  - MooseX::Getopt
101    - Split out the warnings and the exception from Getopt so that they can be
102      overridden.
103   - Split out calling ->die on Getopt::Long::Descriptive::Usage so that it can
104     be overridden.
105    - Properly split roles as promised in 0.22.
106
107 0.24      2009-10-23
108  - MooseX::Getopt
109    - Fix bug with mixed case attribute names (MAROS)
110
111 0.23      2009-10-02
112  - MooseX::Getopt
113    - Allow the config file to return a code ref which is called to return the
114      config file location (Gordon Irving)
115
116 0.22      2009-09-05
117  - Require GLD 0.077 for RT#49427 as some versions are broken
118  - MooseX::Getopt
119    - Split into MooseX::Getopt::Basic (without the G::L::Descriptive support)
120      and MooseX::Getopt::GLD.
121  - Tests
122    - Ensure author tests get run when in author mode.
123
124 0.21      2009-08-27
125  - MooseX::Getopt
126    - Enable and document the argv parameter to the constructor.
127    - Applied patches in RT43200 and RT43255
128    - Applied patch from RT#47766 to not die if SimpleConfig cannot find the
129      default config file name.
130
131 0.20      2009-07-09
132  - fix MANIFEST.SKIP to avoid double-packaging
133
134 0.19      2009-07-08
135  - MooseX::Getopt
136    - Fix Getopt config spec for --configfile (t0m)
137    - Add support for --usage/--help/--? (drew@drewtaylor.com)
138    - Fix new_with_options to accept a hashref (DOUGDUDE@cpan.org)
139  - Tests
140    - Fix warning from tests with new Moose (t0m)
141    - Fix tests on Win32 from RT#44909 (taro-nishino)
142
143 0.18      2009-04-09
144  - MooseX::Getopt::Dashes
145    - New module, for converting undercores to dashes (ilmari)
146
147 0.17      2009-04-08
148  - MooseX::Getopt
149    - work with latest Moose (hdp)
150    - unify module version numbers with dist version (hdp)
151
152 0.16      2009-02-17
153  - Tests
154    - run pod tests only if RELEASE_TESTING env var is set
155
156 0.15      2008-07-26
157  - MooseX::Getopt::OptionTypeMap
158    - Accept type constraint objects in the type mapping, not just names
159
160 0.14      2008-07-10
161  - MooseX::Getopt::OptionTypeMap
162    - Change 'Float' which doesn't exist to 'Num' which does (perigrin)
163  - MooseX::Getopt
164    - removed the default handling with Getopt::Long::Descriptive as it would
165      override constructor parameters and that was bad. Besides, Moose will
166      just DWIM on this anyway. (stevan)
167      - added test for it (stevan)
168  - Tests
169    - fixed Getopt::Long::Descriptive specific tests to only run if
170      Getopt::Long::Descriptive is there (stevan)
171
172 0.13      2008-05-24
173  - MooseX::Getopt
174    - Commandline option shouldn't be required in the case that the given
175      "required" attribute has been loaded from config (MooseX::ConfigFromFile)
176    - Support for MooseX::ConfigFromFile shouldn't require that role be added
177      at the same level as Getopt.
178    - fixed miscapitalization of NoGetopt in the docs
179    - added links to the traits in the docs
180  - converted to Module::Install instead of Module::Build
181
182 0.12      2008-03-14
183  - updated copyright dates
184  - upped the Moose dependency to support the custom metaclass traits
185  - added Getopt::Long::Descriptive as an optional dependency
186  - MooseX::Getopt MooseX::Getopt::Meta::Attribute
187    MooseX::Getopt::Meta::Attribute::Trait
188    MooseX::Getopt::Meta::Attribute::NoGetopt
189    MooseX::Getopt::Meta::Attribute::Trait::NoGetopt
190    - added support for custom metaclass traits
191      - added tests for this
192
193 0.11      2008-01-27
194  - MooseX::Getopt
195    - Commandline option shouldn't be required in the case that the given
196      "required" attribute has a default or a builder method.
197
198 0.10      2008-01-23
199  - MooseX::Getopt
200    - Support default configfile attribute when used with
201      MooseX::ConfigFromFile-based roles
202
203 0.09      2008-01-22
204  - MooseX::Getopt
205    - Use Getopt::Long::Descriptive if it's available
206
207 0.08      2007-12-08
208  - MooseX::Getopt
209    - Added support for configfile loading via MooseX::ConfigFromFile-based
210      roles with the -configfile commandline option.
211
212 0.07      2007-12-04
213  - MooseX::Getopt::Meta::Attribute::NoGetopt
214    - fixed miscapitalization of NoGetopt in the docs
215
216 0.06      2007-11-23
217  - MooseX::Getopt
218    - refactored &new_with_option some so that this will work better with other
219      Getopt modules (nuffin)
220  - MooseX::Getopt::Strict
221    - version of MooseX::Getopt which requires you to specify which attributes
222      you want processed explicity
223      - added tests for this
224  - MooseX::Getopt::Meta::Attribute::NoGetopt
225    - a custom meta-attribute which can be used to specify that an attribute
226      should not be processed
227      - added tests for this
228
229 0.05      2007-07-03
230  - MooseX::Getopt::OptionTypeMap
231    - added some checks to make sure that the type constraints are found
232      properly and to give better diagnostics
233
234 0.04      2007-06-26
235  - MooseX::Getopt::OptionTypeMap
236    - Added support for subtype constraint inference from parent types
237      - added tests and docs for this
238  - MooseX::Getopt
239    - Added extra_argv attribute
240      - added tests and docs for this
241    - We now unmangle the Getopt::Long-mangled @ARGV
242      - added tests and docs for this
243    - We now throw an exception from new_with_options if Getopt fails due to
244      bad arguments.
245      - added tests and docs for this
246
247 0.03      2007-05-02
248  - downgraded the Getopt version requirement to 2.35 as per RT #26844
249  - adding blblack to the authors list
250  - MooseX::Getopt
251    - doc update to show simple way to of excluding an attribute, but not
252      having accessors with underscores (thanks to Zaba on #moose for this)
253  - MooseX::Getopt::Meta::Attribute
254    - tightening up the type constraint in the cmd_alias coercion to only
255      accept strings
256
257 0.02      2007-04-06
258  - MooseX::Getopt
259    - added the ARGV attribute (thanks to blblack)
260      - added tests and docs for this
261  - MooseX::Getopt::Meta::Attribute
262    - added the cmd_aliases attribute (thanks to blblack)
263      - added tests and docs for this
264    - added support for Moose 0.19's custom attribute metaclass alias registry.
265      - added tests and docs for this
266
267 0.01      2007-03-09
268  - module released to CPAN