Skip to content

Commit

Permalink
Prepare for 0.04 version
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-josef-spacek committed Dec 20, 2024
1 parent 65902ca commit f487f17
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
0.04

0.03 2024-12-20T13:26:01+01:00
- Add tests.
- Improve order of check in argument condition.
Expand Down
4 changes: 2 additions & 2 deletions List.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use List::MoreUtils qw(uniq);
use MARC::File::XML (BinaryEncoding => 'utf8', RecordFormat => 'MARC21');
use Unicode::UTF8 qw(decode_utf8 encode_utf8);

our $VERSION = 0.03;
our $VERSION = 0.04;

# Constructor.
sub new {
Expand Down Expand Up @@ -335,6 +335,6 @@ BSD 2-Clause License
=head1 VERSION
0.03
0.04
=cut
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ resources:
homepage: https://github.com/michal-josef-spacek/App-MARC-List
license: http://opensource.org/licenses/bsd-license.php
repository: git://github.com/michal-josef-spacek/App-MARC-List
version: '0.03'
version: '0.04'
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test_requires 'Test::NoWarnings' => 0;
test_requires 'Test::Output' => 0;
test_requires 'Test::Warn' => 0;
tests_recursive;
version '0.03';
version '0.04';

# Run.
WriteAll();
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ LICENSE AND COPYRIGHT
BSD 2-Clause License

VERSION
0.03
0.04

4 changes: 2 additions & 2 deletions bin/marc-list
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

use App::MARC::List;

our $VERSION = 0.03;
our $VERSION = 0.04;

# Run.
exit App::MARC::List->new->run;
Expand Down Expand Up @@ -84,6 +84,6 @@ BSD 2-Clause License
=head1 VERSION
0.03
0.04
=cut
2 changes: 1 addition & 1 deletion t/App-MARC-List/02-version.t
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ use Test::More 'tests' => 2;
use Test::NoWarnings;

# Test.
is($App::MARC::List::VERSION, 0.03, 'Version.');
is($App::MARC::List::VERSION, 0.04, 'Version.');

0 comments on commit f487f17

Please sign in to comment.