rewrite home page redirect
[dh-make-perl] / dev / arm / libtest-simple-perl / libtest-simple-perl-0.80 / Changes
1 0.80  Sun Apr  6 17:25:01 CEST 2008
2     Test fixes
3     - Completely disable the utf8 test.  It was causing perl to panic on some OS's.
4
5
6 0.79_01  Wed Feb 27 03:04:54 PST 2008
7     Bug fixes
8     - Let's try the IO layer copying again, this time with the test
9       fixed for 5.10.
10
11
12 0.78  Wed Feb 27 01:59:09 PST 2008
13     Bug fixes
14     * Whoops, the version of Test::Builder::Tester got moved backwards.
15
16
17 0.77  Wed Feb 27 01:55:55 PST 2008
18     Bug fixes
19     - "use Test::Builder::Module" no longer sets exported_to() or does
20       any other importing.
21     - Fix the $TODO finding code so it can find $TODO without the benefit
22       of exported_to(), which is often wrong.
23     - Turn off the filehandle locale stuff for the moment, there's a 
24       problem on 5.10.  We'll try it again next release.
25       
26     Doc improvements
27     - Improve the Test::Builder SYNOPSIS to use Test::Builder::Module
28       rather than write it's own import().
29
30
31 0.76_02  Sun Feb 24 13:12:55 PST 2008
32     Bug fixes
33     * The default test output filehandles will NOT use utf8.
34       They will now copy the IO layers from STDOUT and STDERR.
35       This means if :utf8 is on then it will honor it and not
36       warn about wide characters.
37
38
39 0.76_01  Sat Feb 23 20:44:32 PST 2008
40     Bug fixes
41     * Test::Builder no longer uses a __DIE__ handler.  This resolves a number
42       of problems with exit codes being swallowed or other module's handlers
43       being interfered with.  [rt.cpan.org 25294]
44     - Allow maybe_regex() to detect blessed regexes.  [bleadperl @32880]
45     - The default test output filehandles will now use utf8.
46       [rt.cpan.org 21091]
47
48     Test fixes
49     - Remove the signature test.  Adds no security and just generates
50       failures.
51
52
53 0.75  Sat Feb 23 19:03:38 PST 2008
54     Incompatibilities
55     * The minimum version is now 5.6.0.
56
57     Bug fixes
58     - Turns out require_ok() had the same bug as use_ok() in a BEGIN block.
59     - ok() was not honoring exported_to() when looking for $TODO as it
60       should be.
61     
62     Test fixes
63     * is_deeply_with_threads.t will not run unless AUTHOR_TESTING is set.
64       This is because it tickles intermittent threading bugs in many perls
65       and causes a lot of bug reports about which I can do nothing.
66     
67     Misc
68     - Ran through perlcritic and did some cleaning.
69
70 0.74  Thu Nov 29 15:39:57 PST 2007
71     Misc
72     - Add abstract and author to the meta information.
73
74 0.73_01  Mon Oct 15 20:35:15 EDT 2007
75     Bug fixes
76     * Put the use_ok() fix from 0.71 back.
77
78 0.72  Wed Sep 19 20:08:07 PDT 2007
79     Bug unfixes
80     * The BEGIN { use_ok } fix for [rt.cpan.org 28345] revealed a small pile of 
81       mistakes in CPAN module test suites.  Rolling the fix back to give the
82       authors a bit of time to fix their tests.
83
84 0.71  Thu Sep 13 20:42:36 PDT 2007
85     Bug fixes
86     - Fixed a problem with BEGIN { use_ok } silently failing when there's no
87       plan set.  [rt.cpan.org 28345]  Thanks Adriano Ferreira and Yitzchak.
88     - Fixed an obscure problem with is_deeply() and overloading ==
89       [rt.cpan.org 20768].  Thanks Sisyphus.
90
91     Test fixes
92     - Removed dependency on Text::Soundex [rt.cpan.org 25022]
93     - Fixed a 5.5.x failure in fail-more.t
94     * Got rid of the annoying sort_bug.t test that revealed problems with some
95       threaded perls.  It was testing the deprecated eq_* functions and not
96       worth the bother.  Now it tests is_deeply().  [rt.cpan.org 17791]
97
98     Doc fixes
99     - Minor POD mistake in Test::Builder [rt.cpan.org 28869]
100     * Test::FAQ has been updated with some more answers.
101
102     Install fixes
103     - Fixed the "LICENSE is not a known MakeMaker parameter name" warning
104       on older MakeMakers for real this time.
105
106 0.70  Thu Mar 15 15:53:05 PDT 2007
107     Bug Fixes
108     * The change to is_fh() in 0.68 broke the case where a reference to
109       a tied filehandle is used for perl 5.6 and back.  This made the tests
110       puke their guts out.
111
112 0.69  Wed Mar 14 06:43:35 PDT 2007
113     Test fixes
114     - Minor filename compatibility fix to t/fail-more.t [rt.cpan.org 25428]
115
116 0.68  Tue Mar 13 17:27:26 PDT 2007
117     Bug fixes
118     * If your code has a $SIG{__DIE__} handler in some cases functions like
119       use_ok(), require_ok(), can_ok() and isa_ok() could trigger that
120       handler. [rt.cpan.org 23509]
121     - Minor improvement to TB's filehandle detection in the case of overridden
122       isa(). [rt.cpan.org 20890]
123     - Will now install as a core module in 5.6.2 which ships with Test::More.
124       [rt.cpan.org 25163]
125
126     New Features
127     - Test::Builder->is_fh() provides a way to determine if a thing
128       can be used as a filehandle.
129
130     Documentation improvements
131     - Improved the docs for $Test::Builder::Level showing the encouraged
132       use (increment, don't set)
133     - Documented the return value of Test::Builder's test methods
134     - Split out TB's method documentation to differenciate between test
135       methods (ok, is_eq...), methods useful in testing (skip, BAILOUT...)
136       and methods useful for building your own tests (maybe_regex...).
137
138     Test fixes
139     - We required too old a version of Test::Pod::Coverage.  Need 1.08 and not
140       1.00. [rt.cpan.org 25351]
141
142 0.67  Mon Jan 22 13:27:40 PST 2007
143     Test fixes
144     - t/pod_coverage.t would fail if Test::Pod::Coverage between 1.07 and
145       1.00 were installed as it depended on all_modules being exported.
146       [rt.cpan.org 24483]
147
148 0.66  Sun Dec  3 15:25:45 PST 2006
149     - Restore 5.4.5 compatibility (unobe@cpan.org) [rt.cpan.org 20513]
150
151 0.65  Fri Nov 10 10:26:51 CST 2006
152
153 0.64_03  Sun Nov  5 13:09:55 EST 2006
154     - Tests will no longer warn when run against an alpha version of
155       Test::Harness [rt.cpan.org #20501]
156     - Now testing our POD and POD coverage.
157     - Added a LICENSE field.
158     - Removed warning from the docs about mixing numbered and unnumbered
159       tests.  There's nothing wrong with that. [rt.cpan.org 21358]
160     - Change doc examples to talk about $got and $expected rather than
161       $this and $that to correspond better to the diagnostic output
162       [rt.cpan.org 2655]
163
164 0.64_02  Sat Sep  9 12:16:56 EDT 2006
165     - Last release broke Perls earlier than 5.8.
166
167 0.64_01  Mon Sep  4 04:40:42 EDT 2006
168     - Small improvement to the docs to avoid user confusion over
169       "use Test::More tests => $num_tests" (Thanks Eric Wilhelm)
170     - Minor fix for a test failure in is_deeply_fail for some Windows
171       users.  Not a real bug.  [rt.cpan.org 21310]
172     - _print_diag() accidentally leaked into the public documentation.
173       It is a private method.
174     * Added Test::Builder->carp() and croak()
175     * Made most of the error messages report in the caller's context.
176       [rt.cpan.org #20639]
177     * Made the failure diagnostic message file and line reporting portion
178       match Perl's for easier integration with Perl aware editors.
179       (so its "at $file line $line_num." now)
180       [rt.cpan.org #20639]
181     * 5.8.0 threads are no longer supported.  There's too many bugs.
182
183 0.64  Sun Jul 16 02:47:29 PDT 2006
184     * 0.63's change to test_fail() broke backwards compatibility.  They
185       have been removed for the time being.  test_pass() went with it.
186       This is [rt.cpan.org 11317] and [rt.cpan.org 11319].
187     - skip() will now warn if you get the args backwards.
188
189 0.63  Sun Jul  9 02:36:36 PDT 2006
190     * Fixed can_ok() to gracefully handle no class name.
191       Submitted by "Pete Krawczyk" <perl@bsod.net>
192       Implemented by "Richard Foley" <richard.foley@rfi.net>
193       [rt.cpan.org 15654]
194     * Added test_pass() to Test::Builder::Tester rather than having to
195       call test_out("ok 1 - foo"). <chromatic@wgz.org> [rt.cpan.org 11317]
196     * test_fail() now accepts a test diagnostic rather than having to
197       call test_out() separately. <chromatic@wgz.org> [rt.cpan.org 11319]
198     - Changed Test::Builder::Tester docs to show best practice using
199       test_fail() and test_pass().
200     - isnt_num() doc example wrongly showed is_num(). <chromatic@wgz.org>
201     - Fixed a minor typo in the BAIL_OUT() docs. <Jeff Deifik>
202     - Removed the LICENSE field from the Makefile.PL as the release of
203       MakeMaker with that feature has been delayed.
204
205 0.62  Sat Oct  8 01:25:03 PDT 2005
206     * Absorbed Test::Builder::Tester.  The last release broke it because its
207       screen scraping Test::More and the failure output changed.  By
208       distributing them together we ensure TBT won't break again.
209     * Test::Builder->BAILOUT() was missing.
210     - is_deeply() can now handle function and code refs in a very limited
211       way.  It simply looks to see if they have the same referent.
212       [rt.cpan.org 14746]
213
214 0.61  Fri Sep 23 23:26:05 PDT 2005
215     - create.t was trying to read from a file before it had been closed
216       (and thus the changes may not have yet been written).
217     * is_deeply() would call stringification methods on non-object strings
218       which happened to be the name of a string overloaded class.
219       [rt.cpan.org 14675]
220
221 0.60_02  Tue Aug  9 00:27:41 PDT 2005
222     * Added Test::Builder::Module.
223     - Changed Test::More and Test::Simple to use Test::Builder::Module
224     - Minor Win32 testing nit in fail-more.t
225     * Added no_diag() method to Test::Builder and changed Test::More's
226       no_diag internals to use that. [rt.cpan.org 8655]
227     * Deprecated no_diag() as an option to "use Test::More".  Call the
228       Test::Builder method instead.
229
230 0.60_01  Sun Jul  3 18:11:58 PDT 2005
231     - Moved the docs around a little to better group all the testing
232       functions together. [rt.cpan.org 8388]
233     * Added a BAIL_OUT() function to Test::More [rt.cpan.org 8381]
234     - Changed Test::Builder->BAILOUT to BAIL_OUT to match other method's
235       naming conventions.  BAILOUT remains but is deprecated.
236     * Changed the standard failure diagnostics to include the test name.
237       [rt.cpan.org 12490]
238     - is_deeply() was broken for overloaded objects in the top level in
239       0.59_01.  [rt.cpan.org 13506]
240     - String overloaded objects without an 'eq' or '==' method are now
241       handled in cmp_ok() and is().
242     - cmp_ok() will now treat overloaded objects as numbers if the comparison
243       operator is numeric. [rt.cpan.org 13156]
244     - cmp_ok(), like() and unlike will now throw uninit warnings if their
245       arguments are undefined. [rt.cpan.org 13155]
246     - cmp_ok() will now throw warnings as if the comparison were run 
247       normally, for example cmp_ok(2, '==', 'foo') will warn about 'foo' 
248       not being numeric.  Previously all warnings in the comparison were
249       supressed. [rt.cpan.org 13155]
250     - Tests will now report *both* the number of tests failed and if the
251       wrong number of tests were run.  Previously if tests failed and the
252       wrong number were run it would only report the latter. 
253       [rt.cpan.org 13494]
254     - Missing or extra tests are not considered failures for the purposes
255       of calculating the exit code.  Should there be no failures but the
256       wrong number of tests the exit code will be 254.
257     - Avoiding an unbalanced sort in eq_set() [bugs.perl.org 36354]
258     - Documenting that eq_set() doesn't deal well with refs.
259     - Clarified how is_deeply() compares a bit.
260     * Once again working on 5.4.5.
261
262 0.60  Tue May  3 14:20:34 PDT 2005
263
264 0.59_01  Tue Apr 26 21:51:12 PDT 2005
265     * Test::Builder now has a create() method which allows you to create
266       a brand spanking new Test::Builder object.
267     * require_ok() was not working for single letter module names.
268     * is_deeply() and eq_* now work with circular scalar references
269       (Thanks Fergal)
270     * Use of eq_* now officially discouraged.
271     - Removed eq_* from the SYNOPSIS.
272     - is_deeply(undef, $not_undef); now works. [rt.cpan.org 9441]
273     - is_deeply() was mistakenly interpeting the same reference used twice
274       in a data structure as being circular causing failures.
275       [rt.cpan.org 11623]
276     - Loading Test::Builder but not using it would interfere with the
277       exit code if the code exited. [rt.cpan.org 12310]
278     - is_deeply() diagnostics now disambiguate between stringified references
279       and references. [rt.cpan.org 8865]
280     - Files opened by the output methods are now autoflushed.
281     - todo() now honors $Level when looking for $TODO.
282
283 0.54  Wed Dec 15 04:18:43 EST 2004
284     * $how_many is optional for skip() and todo_skip().  Thanks to 
285       Devel::Cover for pointing this out.
286     - Removed a user defined function called err() in the tests to placate
287       users of older versions of the dor patch before err() was weakend.
288       [rt.cpan.org 8734]
289
290 0.53_01  Sat Dec 11 19:02:18 EST 2004
291     - current_test() can now be set backward.
292     - *output() methods now handle tied handles and *FOO{IO} properly.
293     - maybe_regex() now handles undef gracefully.
294     - maybe_regex() now handles 'm,foo,' style regexes.
295     - sort_bug.t wasn't checking for threads properly.  Would fail on
296       5.6 that had ithreads compiled in. [rt.cpan.org 8765]
297
298 0.53  Mon Nov 29 04:43:24 EST 2004
299     - Apparently its possible to have Module::Signature installed without
300       it being functional.  Fixed the signature test to account for this.
301       (not a real bug)
302
303 0.52  Sun Nov 28 21:41:03 EST 2004
304     - plan() now better checks that the given plan is valid. 
305       [rt.cpan.org 2597]
306
307 0.51_02  Sat Nov 27 01:25:25 EST 2004
308     * is_deeply() and all the eq_* functions now handle circular data
309       structures.  [rt.cpan.org 7289]
310     * require_ok() now handles filepaths in addition to modules.
311     - Clarifying Test::More's position on overloaded objects 
312     - Fixed a bug introduced in 0.51_01 causing is_deeply() to pierce
313       overloaded objects.
314     - Mentioning rt.cpan.org for reporting bugs.
315
316 0.51_01  Fri Nov 26 02:59:30 EST 2004
317     - plan() was accidentally exporting functions [rt.cpan.org 8385]
318     * diag @msgs would insert # between arguments. [rt.cpan.org 8392]
319     * eq_set() could cause problems under threads due to a weird sort bug
320       [rt.cpan.org 6782]
321     * undef no longer equals '' in is_deeply() [rt.cpan.org 6837]
322     * is_deeply() would sometimes compare references as strings.
323       [rt.cpan.org 7031]
324     - eq_array() and eq_hash() could hold onto references if they failed
325       keeping them in memory and preventing DESTROY.  [rt.cpan.org 7032]
326     * is_deeply() could confuse [] with a non-existing value
327       [rt.cpan.org 7030]
328     - is_deeply() diagnostics a little off when scalar refs were inside
329       an array or hash ref [rt.cpan.org 7033]
330     - Thanks to Fergal Daly for ferretting out all these long standing 
331       is_deeply and eq_* bugs.
332
333 0.51  Tue Nov 23 04:51:12 EST 2004
334     - Fixed bug in fail_one.t on Windows (not a real bug).
335     - TODO reasons as overloaded objects now won't blow up under threads.
336       [Autrijus Tang]
337     - skip() in 0.50 tickled yet another bug in threads::shared.  Hacked
338       around it.
339
340 0.50  Sat Nov 20 00:28:44 EST 2004
341     - Fixed bug in fail-more test on Windows (not a real bug).
342       [rt.cpan.org 8022]
343     - Change from CVS to SVK.  Hopefully this is the last time I move
344       version control systems.
345     - Again removing File::Spec dependency (came back in 0.48_02)
346     - Change from Aegis back to CVS
347
348 0.49  Thu Oct 14 21:58:50 EDT 2004
349     - t/harness_active.t would fail for frivolous reasons with older
350       MakeMakers (test bug) [thanks Bill Moseley for noticing]
351
352 0.48_02  Mon Jul 19 02:07:23 EDT 2004
353     * Overloaded objects as names now won't blow up under threads
354       [rt.cpan.org 4218 and 4232]
355     * Overloaded objects which stringify to undef used as test names
356       now won't cause internal uninit warnings. [rt.cpan.org 4232]
357     * Failure diagnostics now come out on their own line when run in 
358       Test::Harness.
359     - eq_set() sometimes wasn't giving the right results if nested refs 
360       were involved [rt.cpan.org 3747]
361     - isnt() giving wrong diagnostics and warning if given any undefs.
362     * Give unlike() the right prototype [rt.cpan.org 4944]
363     - Change from CVS to Aegis
364     - is_deeply() will now do some basic argument checks to guard against
365       accidentally passing in a whole array instead of its reference.
366     - Mentioning Test::Differences, Test::Deep and Bundle::Test.
367     - Removed dependency on File::Spec.
368     - Fixing the grammar of diagnostic outputs when only a single test
369       is run or failed (ie. "Looks like you failed 1 tests").
370       [Darren Chamberlain]
371
372 0.48_01  Mon Nov 11 02:36:43 EST 2002
373     - Mention Test::Class in Test::More's SEE ALSO
374     * use_ok() now DWIM for version checks
375     - More problems with ithreads fixed.
376     * Test::Harness upgrade no longer optional.  It was causing too
377       many problems when the T::H upgrade didn't work.
378     * Drew Taylor added a 'no_diag' option to Test::More to switch
379       off all diag() statements.
380     * Test::Builder/More no longer automatically loads threads.pm
381       when threads are enabled.  The user must now do this manually.
382     * Alex Francis added reset() reset the state of Test::Builder in 
383       persistent environments.
384     - David Hand noted that Test::Builder/More exit code behavior was
385       not documented.  Only Test::Simple.
386
387 0.47  Mon Aug 26 03:54:22 PDT 2002 
388     * Tatsuhiko Miyagawa noticed Test::Builder was accidentally storing 
389       objects passed into test functions causing problems with tests 
390       relying on object destruction.
391     - Added example of calculating the number of tests to Test::Tutorial
392     - Peter Scott made the ending logic not fire on child processes when
393       forking.
394     * Test::Builder is once again ithread safe.
395
396 0.46  Sat Jul 20 19:57:40 EDT 2002
397     - Noted eq_set() isn't really a set comparision.
398     - Test fix, exit codes are broken on MacPerl (bleadperl@16868)
399     - Make Test::Simple install itself into the core for >= 5.8
400     - Small fixes to Test::Tutorial and skip examples
401     * Added TB->has_plan() from Adrian Howard
402     - Clarified the meaning of 'actual_ok' from TB->details
403     * Added TB->details() from chromatic
404     - Neil Watkiss fixed a pre-5.8 test glitch with threads.t
405     * If the test died before a plan, it would exit with 0 [ID 20020716.013]
406
407 0.45  Wed Jun 19 18:41:12 EDT 2002
408     - Andy Lester made the SKIP & TODO docs a bit clearer.
409     - Explicitly disallowing double plans. (RT #553)
410     - Kicking up the minimum version of Test::Harness to one that's
411       fairly bug free.
412     - Made clear a common problem with use_ok and BEGIN blocks.
413     - Arthur Bergman made Test::Builder thread-safe.
414
415 0.44  Thu Apr 25 00:27:27 EDT 2002
416     - names containing newlines no longer produce confusing output
417       (from chromatic)
418     - chromatic provided a fix so can_ok() honors can() overrides.
419     - Nick Ing-Simmons suggested todo_skip() be a bit clearer about
420       the skipping part.
421     - Making plan() vomit if it gets something it doesn't understand.
422     - Tatsuhiko Miyagawa fixed use_ok() with pragmata on older perls.
423     - quieting diag(undef)
424
425 0.43  Thu Apr 11 22:55:23 EDT 2002
426     - Adrian Howard added TB->maybe_regex()
427     - Adding Mark Fowler's suggestion to make diag() return
428       false.
429     - TB->current_test() still not working when no tests were run via
430       TB itself.  Fixed by Dave Rolsky.
431
432 0.42  Wed Mar  6 15:00:24 EST 2002
433     - Setting Test::Builder->current_test() now works (see what happens
434       when you forget to test things?)
435     - The change in is()'s undef/'' handling in 0.34 was an API change, 
436       but I forgot to declare it as such.
437     - The apostrophilic jihad attacks!  Philip Newtons patch for
438       grammar mistakes in the doc's.
439
440 0.41  Mon Dec 17 22:45:20 EST 2001
441     * chromatic added diag()
442     - Internal eval()'s sometimes interfering with $@ and $!.  Fixed.
443
444 0.40  Fri Dec 14 15:41:39 EST 2001
445     * isa_ok() now accepts unblessed references gracefully
446     - Nick Clark found a bug with like() and a regex with % in it.
447     - exit.t was hanging on 5.005_03 VMS perl.  Test now skipped.
448     - can_ok() would pass if no methods were given.  Now fails.
449     - isnt() diagnostic output format changed
450     * Added some docs about embedding and extending Test::More
451     * Added Test::More->builder
452     * Added cmp_ok()
453     * Added todo_skip()
454     * Added unlike()
455     - Piers pointed out that sometimes people override isa().
456       isa_ok() now accounts for that.
457
458 0.36  Thu Nov 29 14:07:39 EST 2001
459     - Matthias Urlichs found that intermixed prints to STDOUT and test 
460       output came out in the wrong order when piped.
461
462 0.35  Tue Nov 27 19:57:03 EST 2001
463     - Little glitch in the test suite.  No actual bug.
464
465 0.34  Tue Nov 27 15:43:56 EST 2001
466     * **API CHANGE** Empty string no longer matches undef in is() 
467       and isnt().
468     * Added isnt_eq and isnt_num to Test::Builder.
469
470 0.33  Mon Oct 22 21:05:47 EDT 2001
471     * It's now officially safe to redirect STDOUT and STDERR without
472       affecting test output.
473     - License and POD cleanup by Autrijus Tang
474     - Synched up Test::Tutorial with the wiki version
475     - Minor VMS test nit.
476
477 0.32  Tue Oct 16 16:52:02 EDT 2001
478     * Finally added a seperate plan() function
479     * Adding a name field to isa_ok()
480       (Requested by Dave Rolsky)
481     - Test::More was using Carp.pm, causing the occasional false positive.
482       (Reported by Tatsuhiko Miyagawa)
483
484 0.31  Mon Oct  8 19:24:53 EDT 2001
485     * Added an import option to Test::More
486     * Added no_ending and no_header options to Test::Builder
487       (Thanks to Dave Rolsky for giving this a swift kick in the ass)
488     * Added is_deeply().  Display of scalar refs not quite 100%
489       (Thanks to Stas Bekman for Apache::TestUtil idea thievery)
490     - Fixed a minor warning with skip()
491       (Thanks to Wolfgang Weisselberg for finding this one)
492
493 0.30  Thu Sep 27 22:10:04 EDT 2001
494     * Added Test::Builder
495       (Thanks muchly to chromatic for getting this off the ground!)
496     * Diagnostics are back to using STDERR *unless* it's from a todo
497       test.  Those go to STDOUT.
498     - Fixed it so nothing is printed if a test is run with a -c flag.
499       Handy when a test is being deparsed with B::Deparse.
500
501 0.20  *UNRELEASED*
502
503 0.19  Tue Sep 18 17:48:32 EDT 2001
504     * Test::Simple and Test::More no longer print their diagnostics
505       to STDERR.  It instead goes to STDOUT.
506     * TODO tests which fail now print full failure diagnostics.
507     - Minor bug in ok()'s test name diagnostics made it think a blank
508       name was a number.
509     - ok() less draconian about test names
510     - Added temporary special case for Parrot::Test
511     - Now requiring File::Spec for our tests.
512
513 0.18  Wed Sep  5 20:35:24 EDT 2001
514     * ***API CHANGE*** can_ok() only counts as one test
515     - can_ok() has better diagnostics
516     - Minor POD fixes from mjd
517     - adjusting the internal layout to make it easier to put it into
518       the core
519
520 0.17  Wed Aug 29 20:16:28 EDT 2001
521     * Added can_ok() and isa_ok() to Test::More
522
523 0.16  Tue Aug 28 19:52:11 EDT 2001
524     * vmsperl foiled my sensisble exit codes.  Reverting to a much more
525       coarse scheme.
526
527 0.15  Tue Aug 28 06:18:35 EDT 2001  *UNRELEASED*
528     * Now using sensible exit codes on VMS.
529
530 0.14  Wed Aug 22 17:26:28 EDT 2001
531     * Added a first cut at Test::Tutorial
532
533 0.13  Tue Aug 14 15:30:10 EDT 2001
534     * Added a reason to the skip_all interface
535     - Fixed a bug to allow 'use Test::More;' to work.
536       (Thanks to Tatsuhiko Miyagawa again)
537     - Now always testing backwards compatibility.
538
539 0.12  Tue Aug 14 11:02:39 EDT 2001
540     * Fixed some compatibility bugs with older Perls
541       (Thanks to Tatsuhiko Miyagawa)
542
543 0.11  Sat Aug 11 23:05:19 EDT 2001
544     * Will no longer warn about testing undef values
545     - Escaping # in test names
546     - Ensuring that ok() returns true or false and not undef
547     - Minor doc typo in the example
548
549 0.10  Tue Jul 31 15:01:11 EDT 2001
550     * Test::More is now distributed in this tarball.
551     * skip and todo tests work!
552     * Extended use_ok() so it can import
553     - A little internal rejiggering
554     - Added a TODO file
555
556 0.09  Wed Jun 27 02:55:54 EDT 2001
557     - VMS fixes
558
559 0.08  Fri Jun 15 14:39:50 EDT 2001
560     - Guarding against $/ and -l
561     - Reformatted the way failed tests are reported to make them stand out
562       a bit better.
563
564 0.07  Tue Jun 12 15:55:54 BST 2001
565     - 'use Test::Simple' by itself no longer causes death
566     - Yet more fixes for death in eval
567     - Limiting max failures reported via exit code to 254.
568
569 0.06  Wed May  9 23:38:17 BST 2001
570     - Whoops, left a private method in the public docs.
571
572 0.05  Wed May  9 20:40:35 BST 2001
573     - Forgot to include the exit tests.
574     - Trouble with exiting properly under 5.005_03 and 5.6.1 fixed
575     - Turned off buffering
576     * 5.004 new minimum version
577     - Now explicitly tested with 5.6.1, 5.6.0, 5.005_03 and 5.004
578
579 0.04  Mon Apr  2 11:05:01 BST 2001
580     - Fixed "require Test::Simple" so it doesn't bitch and exit 255
581     - Now installable with the CPAN shell.
582
583 0.03  Fri Mar 30 08:08:33 BST 2001
584     - ok() now prints on what line and file it failed.
585     - eval 'die' was considered abnormal.  Fixed.
586
587 0.02  Fri Mar 30 05:12:14 BST 2001      *UNRELEASED*
588     - exit codes tested
589     * exit code on abnormal exit changed to 255 (thanks to Tim Bunce for
590       pointing out that Unix can't do negative exit codes)
591     - abnormal exits now better caught.
592     - No longer using Test.pm to test this, but still minimum of 5.005
593       due to needing $^S.
594
595 0.01  Wed Mar 28 06:44:44 BST 2001
596     - First working version released to CPAN
597