Skip to content

Commit

Permalink
bump to v1.23.29
Browse files Browse the repository at this point in the history
  • Loading branch information
moocow-the-bovine committed Dec 27, 2024
1 parent 3490a2a commit 1f76de8
Show file tree
Hide file tree
Showing 16 changed files with 19 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CCS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use PDL::CCS::Nd;
use PDL::CCS::IO::FastRaw;
use strict;

our $VERSION = '1.23.28'; ##-- update with perl-reversion from Perl::Version module
our $VERSION = '1.23.29'; ##-- update with perl-reversion from Perl::Version module
our @ISA = ('PDL::Exporter');
our @EXPORT_OK =
(
Expand Down
2 changes: 1 addition & 1 deletion CCS/Compat.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use PDL::CCS::Ufunc;
use PDL::CCS::Ops;
use strict;

our $VERSION = '1.23.28'; ##-- update with perl-reversion from Perl::Version module
our $VERSION = '1.23.29'; ##-- update with perl-reversion from Perl::Version module
our @ISA = ('PDL::Exporter');
our @ccs_binops = (qw(plus minus mult divide modulo power),
qw(gt ge lt le eq ne spaceship),
Expand Down
2 changes: 1 addition & 1 deletion CCS/Functions.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ my @ccs_binops = qw(
and2 or2 xor shiftleft shiftright
);

our $VERSION = '1.23.28'; ##-- update with perl-reversion from Perl::Version module
our $VERSION = '1.23.29'; ##-- update with perl-reversion from Perl::Version module
our @ISA = ('PDL::Exporter');
our @EXPORT_OK =
(
Expand Down
2 changes: 1 addition & 1 deletion CCS/IO/Common.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use PDL;
use Carp qw(confess);
use strict;

our $VERSION = '1.23.28';
our $VERSION = '1.23.29';
our @ISA = ('PDL::Exporter');
our @EXPORT_OK =
(
Expand Down
2 changes: 1 addition & 1 deletion CCS/IO/FITS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use PDL::CCS::IO::Common qw(:intern); ##-- for e.g. _ccsio_write_header, _ccsio_
use Carp qw(confess);
use strict;

our $VERSION = '1.23.28';
our $VERSION = '1.23.29';
our @ISA = ('PDL::Exporter');
our @EXPORT_OK =
(
Expand Down
2 changes: 1 addition & 1 deletion CCS/IO/FastRaw.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use PDL::IO::FastRaw;
use Carp qw(confess);
use strict;

our $VERSION = '1.23.28';
our $VERSION = '1.23.29';
our @ISA = ('PDL::Exporter');
our @EXPORT_OK = qw(ccs_writefraw ccs_readfraw ccs_mapfraw);
our %EXPORT_TAGS =
Expand Down
2 changes: 1 addition & 1 deletion CCS/IO/LDAC.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use Fcntl qw(:seek); ##-- for rewinding
use Carp qw(confess);
use strict;

our $VERSION = '1.23.28';
our $VERSION = '1.23.29';
our @ISA = ('PDL::Exporter');
our @EXPORT_OK =
(
Expand Down
2 changes: 1 addition & 1 deletion CCS/IO/MatrixMarket.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use Fcntl qw(:seek); ##-- for rewinding
use Carp qw(confess);
use strict;

our $VERSION = '1.23.28';
our $VERSION = '1.23.29';
our @ISA = ('PDL::Exporter');
our @EXPORT_OK =
(
Expand Down
2 changes: 1 addition & 1 deletion CCS/IO/PETSc.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use Fcntl qw(:seek); ##-- for rewinding
use Carp qw(confess);
use strict;

our $VERSION = '1.23.28';
our $VERSION = '1.23.29';
our @ISA = ('PDL::Exporter');
our @EXPORT_OK =
(
Expand Down
2 changes: 1 addition & 1 deletion CCS/MatrixOps/ccsmatops.pd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
##======================================================================

use PDL::VectorValued::Dev;
my $VERSION = '1.23.28'; ##-- update with perl-reversion from Perl::Version module
my $VERSION = '1.23.29'; ##-- update with perl-reversion from Perl::Version module
pp_setversion($VERSION);

##-- for integer-type keys
Expand Down
2 changes: 1 addition & 1 deletion CCS/Nd.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ BEGIN {
*can = \&UNIVERSAL::can;
}

our $VERSION = '1.23.28'; ##-- update with perl-reversion from Perl::Version module
our $VERSION = '1.23.29'; ##-- update with perl-reversion from Perl::Version module
our @ISA = qw();
our %EXPORT_TAGS =
(
Expand Down
2 changes: 1 addition & 1 deletion CCS/Ops/ccsops.pd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
##======================================================================

use PDL::VectorValued::Dev;
my $VERSION = '1.23.28'; ##-- update with perl-reversion from Perl::Version module
my $VERSION = '1.23.29'; ##-- update with perl-reversion from Perl::Version module
pp_setversion($VERSION);

##------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion CCS/Ufunc/ccsufunc.pd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
##======================================================================

use PDL::VectorValued::Dev;
my $VERSION = '1.23.28'; ##-- update with perl-reversion from Perl::Version module
my $VERSION = '1.23.29'; ##-- update with perl-reversion from Perl::Version module
pp_setversion($VERSION);

##------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion CCS/Utils/ccsutils.pd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
##======================================================================

use PDL::VectorValued::Dev;
my $VERSION = '1.23.28'; ##-- update with perl-reversion from Perl::Version module
my $VERSION = '1.23.29'; ##-- update with perl-reversion from Perl::Version module
pp_setversion($VERSION);

##------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion CCS/Version.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
## Description: set version for PDL::CCS

package PDL::CCS::Version;
our $VERSION = '1.23.28'; ##-- update with perl-reversion from Perl::Version module
our $VERSION = '1.23.29'; ##-- update with perl-reversion from Perl::Version module

1; ##-- make perl happy
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v1.23.29 Fri, 27 Dec 2024 17:59:08 +0100
+ support BAD non-missing values in ccs_matmult2d_zdd
- TODO: support BAD values (including missing) in ccs_matmult2d_sdd

v1.23.28 Fri, 20 Dec 2024 20:12:18 +0100
+ fix 'Runtime error: Tried to convert(null)' when multiplying all-missing CCS::Nd
- reported as https://github.com/moocow-the-bovine/PDL-CCS/issues/14#issuecomment-2556862635
Expand Down

0 comments on commit 1f76de8

Please sign in to comment.