Skip to content
This repository has been archived by the owner on Jan 23, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
2.013005
  • Loading branch information
mohawk2 committed Aug 30, 2015
1 parent 986cca9 commit 632d42e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
3 changes: 1 addition & 2 deletions Basic/Core/Core.pm
Expand Up @@ -8,8 +8,7 @@ use PDLA::Exporter;
require PDLA; # for $VERSION
use DynaLoader;
our @ISA = qw( PDLA::Exporter DynaLoader );
our $VERSION = '2.013'; # PAUSE insists - below is the real one
$VERSION = $PDLA::VERSION;
our $VERSION = $PDLA::VERSION;
bootstrap PDLA::Core $VERSION;
use PDLA::Types ':All';

Expand Down
12 changes: 5 additions & 7 deletions Basic/PDLA.pm
@@ -1,3 +1,5 @@
package PDLA;

=head1 NAME
PDLA - the Perl Data Language
Expand Down Expand Up @@ -141,8 +143,9 @@ start-up modules.
=cut

# set the version:
$PDLA::VERSION = '2.013004';
# set the version in way that PAUSE will like
{ package PDLA::Core; our $VERSION = '2.013005'; }
our $VERSION = $PDLA::Core::VERSION;

# Main loader of standard PDLA package

Expand Down Expand Up @@ -176,11 +179,6 @@ die $@ if $@;

}


# Dummy Package PDLA Statement. This is only needed so CPAN
# properly recognizes the PDLA package.
package PDLA;

# support: use Inline with => 'PDLA';
# Returns a hash containing parameters accepted by recent versions of
# Inline, to tweak compilation. Not normally called by anyone but
Expand Down
3 changes: 3 additions & 0 deletions Changes
@@ -1,3 +1,6 @@
v2.013005 Sun Aug 30 03:43:01 BST 2015
- minor tweak to how $VERSION recorded/used

v2.013004 Sun Aug 30 03:00:57 BST 2015
- PDLA::Core to separate distro and repo

Expand Down

0 comments on commit 632d42e

Please sign in to comment.