Skip to content

Commit

Permalink
Update $VERSION and Changes/Known_problems for 2.015 release
Browse files Browse the repository at this point in the history
  • Loading branch information
devel-chm committed Nov 22, 2015
1 parent 0e80210 commit 35e3e61
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Basic/Core/Core.pm
Expand Up @@ -8,7 +8,7 @@ use PDL::Exporter;
require PDL; # for $VERSION
use DynaLoader;
our @ISA = qw( PDL::Exporter DynaLoader );
our $VERSION = '2.014_03';
our $VERSION = '2.015';
bootstrap PDL::Core $VERSION;
use PDL::Types ':All';
use Config;
Expand Down
2 changes: 1 addition & 1 deletion Basic/PDL.pm
Expand Up @@ -147,7 +147,7 @@ start-up modules.


# set the version:
$PDL::VERSION = '2.014_03';
$PDL::VERSION = '2.015';

# Main loader of standard PDL package

Expand Down
50 changes: 50 additions & 0 deletions Changes
@@ -1,3 +1,53 @@
v2.015 2015-11-22 08:52:22-05:00

General Notes:

* PDL-2.015 is a clean and polish release. It fixes
some problems discovered with PDL-2.014 and improves
the 64bit integer support.


Highlights:

* Fixes to improve compile and test of F77 modules
on OS X (i.e. don't build i386 versions)

* Basic/Ops/ops.pd - make compatible with MSVC++ 6.0

* Fix win10 breakage in t/flexraw_fortran.t Apparently, temp
files were not being released after use which was preventing
the tests to pass.

* Fix missing PDL license information

* Fix sf.net bug #403: reshape() failed when applied to a
piddle with dataflow. Now, changing the shape of a PDL
that already has dataflow is prevented and an error message
given.

* Fix sf.net bug 406 Added missing logic for clump(-N) and minor
cleanup of perl wrapper.

* force new_pdl_from_string to return a piddle with P=physical flag

* Add $PDL::indxformat for PDL_Indx This avoids loss of
significance when 64bit PDL_Indx values are printed.

Make new_pdl_from_string() avoid converting IV values
to NVs This allows pdl(indx, '[ 9007199254740992 ]')
to work without rounding due to the 52bit double
precision mantissa versus the 63bits + sign for PDL_Indx.

* Add type support info to pdl() constructor documentation.
pdl() has always supported this usage but examples were
missing in the documentation.

* improving PDL::GSL::RNG documentation

* remove spurious '}' from gnuplot demo



v2.014_03 2015-11-19 12:37:00-05:00

General Notes:
Expand Down
3 changes: 2 additions & 1 deletion Known_problems
Expand Up @@ -102,7 +102,7 @@ The following issues have been reported with this version of PDL:


- The following SourceForge bugs are outstanding at time of the
PDL-2.014_03 release:
PDL-2.015 release:

411 relax reshape() constraints
410 perl scalar NVs to float/#double types confusing
Expand All @@ -111,6 +111,7 @@ The following issues have been reported with this version of PDL:
407 Build failures with GSL 2.1
405 PDL::Bad - adding locf() function
397 PDL::FFT not 64bit integer safe
393 Tests may fail if perl is compiled with -Duselongdouble
392 Inline Pdlpp doesn't work in clean build tree
391 Operators called in the form "explicit call with trailing 0" give syntax error
384 pdldoc.db is getting invalid paths to files on cygwin
Expand Down

0 comments on commit 35e3e61

Please sign in to comment.