Skip to content

Commit

Permalink
update to version 0.66
Browse files Browse the repository at this point in the history
  • Loading branch information
pmqs committed Oct 14, 2024
1 parent 89238d7 commit f840409
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 10 deletions.
4 changes: 2 additions & 2 deletions BerkeleyDB.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
package BerkeleyDB;


# Copyright (c) 1997-2022 Paul Marquess. All rights reserved.
# Copyright (c) 1997-2024 Paul Marquess. All rights reserved.
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
#
Expand All @@ -17,7 +17,7 @@ use Carp;
use vars qw($VERSION @ISA @EXPORT $AUTOLOAD
$use_XSLoader);

$VERSION = '0.65';
$VERSION = '0.66';

require Exporter;

Expand Down
2 changes: 1 addition & 1 deletion BerkeleyDB.pod
Original file line number Diff line number Diff line change
Expand Up @@ -2724,7 +2724,7 @@ The official web site for Berkeley DB is F<http://www.oracle.com/technology/prod

=head1 COPYRIGHT

Copyright (c) 1997-2022 Paul Marquess. All rights reserved. This program
Copyright (c) 1997-2024 Paul Marquess. All rights reserved. This program
is free software; you can redistribute it and/or modify it under the
same terms as Perl itself.

Expand Down
2 changes: 1 addition & 1 deletion BerkeleyDB.pod.P
Original file line number Diff line number Diff line change
Expand Up @@ -2491,7 +2491,7 @@ The official web site for Berkeley DB is F<http://www.oracle.com/technology/prod
=head1 COPYRIGHT
Copyright (c) 1997-2022 Paul Marquess. All rights reserved. This program
Copyright (c) 1997-2024 Paul Marquess. All rights reserved. This program
is free software; you can redistribute it and/or modify it under the
same terms as Perl itself.
Expand Down
16 changes: 16 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
Revision history for Perl extension BerkeleyDB.

0.66 14 October 2024

* Bundled Test::More fails with perl 5.41.x
https://github.com/pmqs/BerkeleyDB/issues/12
89238d726d9faf88810820433a5373c4aaa9be6a
0f3c102c99deb65550dac8f3c78d58ab24fd1342

* Possible precedence problem between ! and string eq
https://github.com/pmqs/BerkeleyDB/issues/13
99cd013dd228894743fe5a4ccbd2f02cb4fb4e8d

* Silence clang warnings
https://github.com/pmqs/BerkeleyDB/issues/10
12ac0e42556e026f9cd48c2da5fcfd30e125820e


0.65 13 May 2022

* Update to license wording
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@
"web" : "https://github.com/pmqs/BerkeleyDB"
}
},
"version" : "0.65"
"version" : "0.66"
}
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ resources:
bugtracker: https://github.com/pmqs/BerkeleyDB/issues
homepage: https://github.com/pmqs/BerkeleyDB
repository: git://github.com/pmqs/BerkeleyDB.git
version: 0.65
version: 0.66
6 changes: 3 additions & 3 deletions README
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
BerkeleyDB

Version 0.65
Version 0.66

13th May 2022
14th October 2024


Copyright (c) 1997-2022 Paul Marquess. All rights reserved. This
Copyright (c) 1997-2024 Paul Marquess. All rights reserved. This
program is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

Expand Down
2 changes: 1 addition & 1 deletion t/000prereq.t
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ BEGIN

plan tests => 1 + $extra ;

use_ok('BerkeleyDB', '0.65');
use_ok('BerkeleyDB', '0.66');
}

if (defined $BerkeleyDB::VERSION)
Expand Down

0 comments on commit f840409

Please sign in to comment.