Skip to content

Commit

Permalink
Perl: version 1.05
Browse files Browse the repository at this point in the history
  • Loading branch information
rhash committed Oct 21, 2024
1 parent 19ba738 commit ac9a7ad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bindings/perl/META.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@
"url" : "https://github.com/rhash/RHash"
}
},
"version" : "1.00"
"version" : "1.05"
}
2 changes: 1 addition & 1 deletion bindings/perl/META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ resources:
homepage: http://rhash.sf.net/
license: https://github.com/rhash/RHash/blob/master/COPYING
repository: https://github.com/rhash/RHash
version: 1.00
version: 1.05
2 changes: 1 addition & 1 deletion bindings/perl/Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ sub copy_c_files($) {
my $from_dir = $_[0];
my @result = ();
(opendir my($dh), $from_dir) or die "Can't open $from_dir: $!";
my @files = grep { /(?<!\Atest_hashes)\.c$/ } readdir $dh;
my @files = grep { /(?<!\Atest_lib)\.c$/ } readdir $dh;
closedir $dh;
for (@files) {
my ($from, $to) = ("$from_dir/$_", "_$_");
Expand Down
2 changes: 1 addition & 1 deletion bindings/perl/Rhash.pm
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ our %EXPORT_TAGS = (
Exporter::export_tags( );
Exporter::export_ok_tags( qw(Functions Constants) );

our $VERSION = '1.00';
our $VERSION = '1.05';

require XSLoader;
XSLoader::load('Crypt::Rhash', $VERSION);
Expand Down

0 comments on commit ac9a7ad

Please sign in to comment.