Revision history for Perl extension Math::Random::MT::Auto.

2.1.0 Tues Aug 09 12:46:40 2005
	- Bumped minor version number for CPAN

2.0.1 Mon Aug 08 08:49:00 2005
	- Fixed memory leak when using threads with sub-classes

2.0.0 Wed Aug 03 08:07:10 2005
	- Added shuffle() - Fisher-Yates shuffle
	- Sample program for shuffle function
	- New (faster) method for Gaussian random numbers
	- Added exponential() - Exponentially distributed random numbers
	- Added erlang() - Random numbers based on an Erlang distribution
	- Added poisson() - Random numbers based on a Poisson distribution
	- Added binomial() - Random numbers based on a binomial distribution
	- Sample programs for non-uniform random deviates

1.37  Sat Jul 16 18:42:40 2005
	- Fix to 32-bit floating point conversion

1.36  Fri Jul 15 09:18:30 2005
	- Support gaussian($sd, $mean)
	- Fix to non-blocking IO code

1.35  Tue Jul 12 11:17:40 2005
	- Require 'C' compiler in Makefile.PL
	- No non-blocking IO on Windows
	- Non-fatal if can't set non-blocking IO
	- Fix for identifying Win XP

1.34  Mon Jul 11 09:03:00 2005
	- Require Scalar::Util 1.16 or higher
	- Removed deprecated rand32

1.33  Fri Jul 08 13:20:00 2005
	- Fix for determining 64-bit support by using $Config{'uvsize'}
	- Mandate >5.6.0 (for the above)

1.30  Thu Jul 07 20:16:00 2005
	- Belated version bump for 64-bit support
	- Fix for non-gcc compilers

1.23  Thu Jul 07 11:41:00 2005
	- 64-bit algorithm on Perls with 'use64bitint'
	- Added irand for random integers (rand32 deprecated)

1.22  Tue Jul 05 15:06:00 2005
	- Subclass handling
	- Documented as not thread-safe for < 5.7.2

1.21  Fri Jul 01 14:43:30 2005
	- Added gaussian() - Gaussian (normal) distributed random numbers

1.20  Thu Jun 30 14:22:45 2005
	- Full-blown OO interface that is also thread safe
	- Replaced @errors array with warnings() function/method
	- Win32 XP random seed source

1.11  Fri Jun 24 12:36:30 2005
	- Fixed :!auto flag processing
	- Better arg handling in srand() and seed()
	- Added cautionary note to POD concerning the use of 'require'

1.10  Thu Jun 23 16:09:45 2005
	- Generalized random device support
	- Support for user-supplied seeding functions
	- Support for fetching and restoring PRNG state vector

1.00  Wed Jun 22 15:54:26 2005
	- Initial release