Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
voegelas committed Feb 19, 2025
1 parent 800d424 commit 9b0e9a3
Show file tree
Hide file tree
Showing 13 changed files with 34 additions and 30 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for CPANPLUS-Dist-Debora

0.017 2025-02-19 09:55:02 CET

- Use localhost if Net::Domain::hostfqdn fails

0.016 2025-01-27 17:51:32 CET

- Ignore CPANPLUS::Module::Author::Fake objects
Expand Down
20 changes: 10 additions & 10 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,39 +83,39 @@
"provides" : {
"CPANPLUS::Dist::Debora" : {
"file" : "lib/CPANPLUS/Dist/Debora.pm",
"version" : "0.016"
"version" : "0.017"
},
"CPANPLUS::Dist::Debora::License" : {
"file" : "lib/CPANPLUS/Dist/Debora/License.pm",
"version" : "0.016"
"version" : "0.017"
},
"CPANPLUS::Dist::Debora::Package" : {
"file" : "lib/CPANPLUS/Dist/Debora/Package.pm",
"version" : "0.016"
"version" : "0.017"
},
"CPANPLUS::Dist::Debora::Package::Debian" : {
"file" : "lib/CPANPLUS/Dist/Debora/Package/Debian.pm",
"version" : "0.016"
"version" : "0.017"
},
"CPANPLUS::Dist::Debora::Package::Mageia" : {
"file" : "lib/CPANPLUS/Dist/Debora/Package/Mageia.pm",
"version" : "0.016"
"version" : "0.017"
},
"CPANPLUS::Dist::Debora::Package::RPM" : {
"file" : "lib/CPANPLUS/Dist/Debora/Package/RPM.pm",
"version" : "0.016"
"version" : "0.017"
},
"CPANPLUS::Dist::Debora::Package::Tar" : {
"file" : "lib/CPANPLUS/Dist/Debora/Package/Tar.pm",
"version" : "0.016"
"version" : "0.017"
},
"CPANPLUS::Dist::Debora::Pod" : {
"file" : "lib/CPANPLUS/Dist/Debora/Pod.pm",
"version" : "0.016"
"version" : "0.017"
},
"CPANPLUS::Dist::Debora::Util" : {
"file" : "lib/CPANPLUS/Dist/Debora/Util.pm",
"version" : "0.016"
"version" : "0.017"
}
},
"release_status" : "stable",
Expand All @@ -130,7 +130,7 @@
"web" : "https://github.com/voegelas/CPANPLUS-Dist-Debora"
}
},
"version" : "0.016",
"version" : "0.017",
"x_generated_by_perl" : "v5.40.1",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.39",
"x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later"
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ my %WriteMakefileArgs = (
"Test::More" => 0,
"lib" => 0
},
"VERSION" => "0.016",
"VERSION" => "0.017",
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = CPANPLUS-Dist-Debora
version = 0.016
version = 0.017
author = Andreas Vögele <[email protected]>
license = Perl_5
copyright_holder = Andreas Vögele
Expand Down
4 changes: 2 additions & 2 deletions lib/CPANPLUS/Dist/Debora.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.016;
use warnings;
use utf8;

our $VERSION = '0.016';
our $VERSION = '0.017';

use parent qw(CPANPLUS::Dist::Base);

Expand Down Expand Up @@ -218,7 +218,7 @@ CPANPLUS::Dist::Debora - Create Debian or RPM packages from Perl modules
=head1 VERSION
version 0.016
version 0.017
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/CPANPLUS/Dist/Debora/License.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.016;
use warnings;
use utf8;

our $VERSION = '0.016';
our $VERSION = '0.017';

use parent qw(Software::License);

Expand Down Expand Up @@ -138,7 +138,7 @@ CPANPLUS::Dist::Debora::License - Read license files
=head1 VERSION
version 0.016
version 0.017
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/CPANPLUS/Dist/Debora/Package.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.016;
use warnings;
use utf8;

our $VERSION = '0.016';
our $VERSION = '0.017';

use Carp qw(croak);
use Config;
Expand Down Expand Up @@ -1237,7 +1237,7 @@ CPANPLUS::Dist::Debora::Package - Base class for package formats
=head1 VERSION
version 0.016
version 0.017
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/CPANPLUS/Dist/Debora/Package/Debian.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.016;
use warnings;
use utf8;

our $VERSION = '0.016';
our $VERSION = '0.017';

use parent qw(CPANPLUS::Dist::Debora::Package);

Expand Down Expand Up @@ -926,7 +926,7 @@ CPANPLUS::Dist::Debora::Package::Debian - Create Debian packages
=head1 VERSION
version 0.016
version 0.017
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/CPANPLUS/Dist/Debora/Package/Mageia.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.016;
use warnings;
use utf8;

our $VERSION = '0.016';
our $VERSION = '0.017';

use parent qw(CPANPLUS::Dist::Debora::Package::RPM);

Expand Down Expand Up @@ -49,7 +49,7 @@ CPANPLUS::Dist::Debora::Package::Mageia - Create binary RPM packages
=head1 VERSION
version 0.016
version 0.017
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/CPANPLUS/Dist/Debora/Package/RPM.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.016;
use warnings;
use utf8;

our $VERSION = '0.016';
our $VERSION = '0.017';

use parent qw(CPANPLUS::Dist::Debora::Package);

Expand Down Expand Up @@ -574,7 +574,7 @@ CPANPLUS::Dist::Debora::Package::RPM - Create binary RPM packages
=head1 VERSION
version 0.016
version 0.017
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/CPANPLUS/Dist/Debora/Package/Tar.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.016;
use warnings;
use utf8;

our $VERSION = '0.016';
our $VERSION = '0.017';

use parent qw(CPANPLUS::Dist::Debora::Package);

Expand Down Expand Up @@ -256,7 +256,7 @@ CPANPLUS::Dist::Debora::Package::Tar - Create tar archives
=head1 VERSION
version 0.016
version 0.017
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/CPANPLUS/Dist/Debora/Pod.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.016;
use warnings;
use utf8;

our $VERSION = '0.016';
our $VERSION = '0.017';

use parent qw(Pod::Simple);

Expand Down Expand Up @@ -302,7 +302,7 @@ CPANPLUS::Dist::Debora::Pod - Parse Pod documents
=head1 VERSION
version 0.016
version 0.017
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/CPANPLUS/Dist/Debora/Util.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.016;
use warnings;
use utf8;

our $VERSION = '0.016';
our $VERSION = '0.017';

use parent qw(Exporter);

Expand Down Expand Up @@ -304,7 +304,7 @@ CPANPLUS::Dist::Debora::Util - Utility functions
=head1 VERSION
version 0.016
version 0.017
=head1 SYNOPSIS
Expand Down

0 comments on commit 9b0e9a3

Please sign in to comment.