Update the Changes file for 0.21 and improve .gitignore
[Math-GSL.git] / Changes
blob10f60d465684406a26d8425984f9bec04b643f57
1 =head1 Math::GSL Changes
3 =head1 v0.21 - ???
4     - Fixed the export of hypergeometric functions
5     - In instantiation of GSLBuilder in Build.PL, the value for the parameter
6       include_dirs were corrected to an anonymous empty array, instead of an
7       empty string.  (Jakob Ilves)
8     - Operator overloading of vector equality (Thierry Moisan)
9     - Various doc fixes (Pjotr Prins)
10     - Typemap fixes (Vincent Danjean)
12 =head1 v0.20 - May 19 2009
13     - $rng->get($n) will now return the next $n values of the random number generator
14     - Fixed + added test for RT#45044 math-gsl eigenpair bug, reported with patch by Ian Malone
15     - Added more tests for Randist
16     - Fixed some incorrectly written tests for BLAS and Linalg
17     - Improved NTuple support and tests
18     - Improvements to callbacks, thanks to patches from piotrj
19     - The following improvements were merged from Vincent Danjean's git repo:
20     - Fixed some memory leaks caused by in-typemaps without argout-typemaps
21     - Improved portable callback implementation
22     - Correct handling of double, float and size_t on x64
23     - Removed duplicate definition of fopen/fclose in VectorComplex
24     - Fix bug where proper flags to SWIG were not passed
26 =head1 v0.18 - March 23 2009
28     - Make Math::GSL play nice with GSL 1.12
29     - Added swap() to Vector objects with tests and docs
30     - Added p-norms to Vector objects via norm() and normalize()
31     - Added operator overloading so that
32             abs $vector == $vector->norm
33     - Added as_vector() to Matrix and MatrixComplex objects
34     - Added inverse(), is_square(), det(),  lndet(), zero() and identity()
35         to Matrix objects
36     - Added inverse(), is_square(), det(),  lndet(), zero(), identity() 
37         and hermitian() to MatrixComplex objects
38     - Added dot product to Matrix objects
39     - Fixed various typos in documentation
40     - Fixed warnings about overloaded operators in Matrix and BLAS
41     - Overloaded '==' and '!=' for MatrixComplex and Matrix objects
42     - Fixed amd64 -fPIC compile failure
43     - Added tests to Monte and refactor Sort tests
44     - Refactored and improve error checking in callback interface
45     - Fixed 'NaN' test failures (thanks CPANtesters!)
47 =head1 v0.16 - December 14 2008 (Happy Snowpocalypse PDX!)
49     - Fixed RT#40947: configure_requires ExtUtils::PkgConfig bug
50     - Added reverse() and swap() methods to VectorComplex objects with tests and docs
51     - as_list() and get() now work on VectorComplex objects
52         as_list() returns a list of Math::Complex objects
53         get() returns a list of Math::GSL::Complex objects
54     - Math::GSL::Test::ok_status() now takes an optional message argument
55     - Added KNOWN_BUGS
56     - Added Math::GSL::Test::is_status_ok()
57     - New subsytems: VectorComplex and MatrixComplex
58     - Operator overloading for addition and subtraction with vectors
59     - Added example: examples/matrix/nonsymmetric_eigen
60         Shows how to find the eigenvalues of a nonsymmetric matrix
61     - Added copy() method to vectors
62     - Improved Vector docs
63     - Sped up vector dot products by 15x using BLAS function gsl_blas_ddot
64         NOTE: using gsl_blas_ddot($x->raw,$y->raw) directly is still about 10 times faster
65               than $x * $y due to error checking and function call overhead
66     - Separated POD and Perl code out of SWIG interface files, yay for proper syntax
67         highlighting
68     - Added stub test files for Heapsort, IEEEUtils, Multimin, Siman, Wavelet2D
69     - All test files now keep track of how many tests should run
70     - Fix an include bug in Histogram2D which caused the build to fail (Thierry)
71     - Operator overloading for addition, multiplication and subtraction on Matrix objects (Thierry)
74 =head1 v0.14 - October 21 2008
76     - Chebyshev Series Approximation, with tests and docs
77     - Examples and new documentation in Statistics, as well as tests (Thierry)
78     - Bugfixes relating to compiling on 64bit Red Hat Linux, reported by Michael Roberge
79     - Improved FFT, Deriv, Integration, Chebyshev, Combination and Roots docs
80     - Documentation for Math::GSL::Test 
81     - Improved introduction examples in Math::GSL
82     - Improved Minimization subsystem tests, but it is not functional
83     - Added examples/fft/forward_real
84     - Added example/deriv/basic
86         This shows the simple fact that d/dx(sin(x)) = cos(x)
88     - Added example/sf/erfc_check (thanks to Keith Lofstrom)
90         Script which tests the erfc() special function against computing
91         the integral definition with gsl_integration_qagiu()
93     - Added example/vector/speed 
94     
95         This shows a considerable performance boost using Math::GSL::Vectors
96         instead of List::Util when searching for the min and max elements of
97         large sets of random numbers.
99     - Fixed return signature of gsl_deriv_* functions to return a flat list
100     - Fixed some failing tests relating to  -Duselongdouble (Sisyphus)
101     - Fix location of shared objects (Sisyphus)
102     - Added raw() method to RNG objects
104 =head1 v0.12 - September 14 2008
106     - Darwin support! 
107     - Minimum Perl version changed to 5.8.0
108     - Make platform check compile time constants for performance
109         aka The Wilhelm Speedup (thanks to Eric Wilhelm <scratchcomputing@gmail.com>)
110     - FFT for real data
111     - Numerical derivatives fully implemented
112     - Integration subsystem, gsl_integrate_qags() and gsl_integrate_qagi(), etc..
113         - QNG    : Non-adaptive Gaussian (uses fixed number of sample points in interval)
114         - QAG(S) : Adaptive Gaussian (Singluar) (slices interval up based on properties of the function)
115         - QAGI   : Adaptive Gaussian with infinite integration range
116         - other are supported but not tested
117     - Initial Monte tests
118     - Initial Multiroots tests
119     - More nan/inf fixes on MSWin32 from <sisyphus@cpan.org>
120     - Stripping of binaries on Windows, which significantly reduces size
121         from <sisyphus@cpan.org>
122     - Full support and tests for all functions in the Sort subsystem
123     - Added 'examples/benchmark/sort' to show performance of gsl_sort()
124     - Added 'examples/clicker/chart' to show graphing of functions
125     - Added 'examples/gsl_repl' which is a rapid protyping tool/interactive interpreter
126     - Compile support for GSL's as old as 1.8 (test suite still needs to be properly guarded)
128 =head1 v0.10 
130     - Continued porting to MSWin32, fixing many NaN and Inf handling issues
132 =head1 v0.08
134     - Large documentation improvements
135     - MSWin32 support thanks to testing and feedback from <sisyphus@cpan.org>
137 =head1 v0.07 
139     - Initial CPAN release
140     
141 =head1 v0.042 
143     - Started change to Test::Class
145 =head1 v0.01 
147     - Added swig interface files and swig-ified build script
148     - initial tests for special function library gsl_sf <--> Math::GSL::Sf
149     - Proof Of Concept: makegsl and testgsl