Skip to content

Commit

Permalink
bump to v1.24.1
Browse files Browse the repository at this point in the history
  • Loading branch information
moocow-the-bovine committed Jan 4, 2025
1 parent e29ce3d commit 9e3cbb5
Show file tree
Hide file tree
Showing 16 changed files with 22 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.24.0'; ##-- update with perl-reversion from Perl::Version module
our $VERSION = '1.24.1'; ##-- 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.24.0'; ##-- update with perl-reversion from Perl::Version module
our $VERSION = '1.24.1'; ##-- 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.24.0'; ##-- update with perl-reversion from Perl::Version module
our $VERSION = '1.24.1'; ##-- 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.24.0';
our $VERSION = '1.24.1';
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.24.0';
our $VERSION = '1.24.1';
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.24.0';
our $VERSION = '1.24.1';
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.24.0';
our $VERSION = '1.24.1';
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.24.0';
our $VERSION = '1.24.1';
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.24.0';
our $VERSION = '1.24.1';
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.24.0'; ##-- update with perl-reversion from Perl::Version module
my $VERSION = '1.24.1'; ##-- 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.24.0'; ##-- update with perl-reversion from Perl::Version module
our $VERSION = '1.24.1'; ##-- 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.24.0'; ##-- update with perl-reversion from Perl::Version module
my $VERSION = '1.24.1'; ##-- 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.24.0'; ##-- update with perl-reversion from Perl::Version module
my $VERSION = '1.24.1'; ##-- 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.24.0'; ##-- update with perl-reversion from Perl::Version module
my $VERSION = '1.24.1'; ##-- 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.24.0'; ##-- update with perl-reversion from Perl::Version module
our $VERSION = '1.24.1'; ##-- update with perl-reversion from Perl::Version module

1; ##-- make perl happy
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
v1.24.1 Sat, 04 Jan 2025 09:02:21 +0100 mohawk2
- use `signed char` to accumulate logical values - #19
+ same problem as https://github.com/PDLPorters/pdl/issues/502
+ PR #20 - fixups
- set dimsize in Pars
- CI min 5.16

v1.24.0 Fri, 03 Jan 2025 08:59:42 +0100
+ github issue #16: overhaul PP output dimension initialization (use RedoDimsCode)
+ add and use CCS_PDL_IS_NULL macro
Expand Down

0 comments on commit 9e3cbb5

Please sign in to comment.