Skip to content
This repository has been archived by the owner on Mar 7, 2019. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
update Changes and bump version
  • Loading branch information
jberger committed Mar 19, 2012
1 parent 7ab4d2d commit 1ab6c94
Show file tree
Hide file tree
Showing 13 changed files with 38 additions and 34 deletions.
4 changes: 4 additions & 0 deletions Changes
@@ -1,5 +1,9 @@
Revision history for Perl module Alien::Base.

0.000_003 Mar 18, 2012
- Require safer File::chdir
- Fixed "Bad File Descriptor" bug calling pkg-config

0.000_002 Mar 18, 2012
- More documentation
- Smarter in handling user-provided pkg-config data
Expand Down
24 changes: 12 additions & 12 deletions META.json
Expand Up @@ -36,7 +36,7 @@
"Archive::Extract" : "0",
"Capture::Tiny" : "0",
"File::ShareDir" : "0",
"File::chdir" : "0",
"File::chdir" : "0.1005",
"List::MoreUtils" : "0",
"Module::Build" : "0.36",
"Perl::OSType" : "0",
Expand All @@ -50,43 +50,43 @@
"provides" : {
"Alien::Base" : {
"file" : "lib/Alien/Base.pm",
"version" : "0.000_002"
"version" : "0.000_003"
},
"Alien::Base::ModuleBuild" : {
"file" : "lib/Alien/Base/ModuleBuild.pm",
"version" : "0.000_002"
"version" : "0.000_003"
},
"Alien::Base::ModuleBuild::Cabinet" : {
"file" : "lib/Alien/Base/ModuleBuild/Cabinet.pm",
"version" : "0.000_002"
"version" : "0.000_003"
},
"Alien::Base::ModuleBuild::File" : {
"file" : "lib/Alien/Base/ModuleBuild/File.pm",
"version" : "0.000_002"
"version" : "0.000_003"
},
"Alien::Base::ModuleBuild::Repository" : {
"file" : "lib/Alien/Base/ModuleBuild/Repository.pm",
"version" : "0.000_002"
"version" : "0.000_003"
},
"Alien::Base::ModuleBuild::Repository::FTP" : {
"file" : "lib/Alien/Base/ModuleBuild/Repository/FTP.pm",
"version" : "0.000_002"
"version" : "0.000_003"
},
"Alien::Base::ModuleBuild::Repository::HTTP" : {
"file" : "lib/Alien/Base/ModuleBuild/Repository/HTTP.pm",
"version" : "0.000_002"
"version" : "0.000_003"
},
"Alien::Base::ModuleBuild::Repository::Local" : {
"file" : "lib/Alien/Base/ModuleBuild/Repository/Local.pm",
"version" : "0.000_002"
"version" : "0.000_003"
},
"Alien::Base::ModuleBuild::Utils" : {
"file" : "lib/Alien/Base/ModuleBuild/Utils.pm",
"version" : "0.000_002"
"version" : "0.000_003"
},
"Alien::Base::PkgConfig" : {
"file" : "lib/Alien/Base/PkgConfig.pm",
"version" : "0.000_002"
"version" : "0.000_003"
}
},
"release_status" : "testing",
Expand All @@ -101,5 +101,5 @@
"url" : "http://github.com/jberger/Alien-Base"
}
},
"version" : "0.000_002"
"version" : "0.000_003"
}
24 changes: 12 additions & 12 deletions META.yml
Expand Up @@ -21,41 +21,41 @@ no_index:
provides:
Alien::Base:
file: lib/Alien/Base.pm
version: 0.000_002
version: 0.000_003
Alien::Base::ModuleBuild:
file: lib/Alien/Base/ModuleBuild.pm
version: 0.000_002
version: 0.000_003
Alien::Base::ModuleBuild::Cabinet:
file: lib/Alien/Base/ModuleBuild/Cabinet.pm
version: 0.000_002
version: 0.000_003
Alien::Base::ModuleBuild::File:
file: lib/Alien/Base/ModuleBuild/File.pm
version: 0.000_002
version: 0.000_003
Alien::Base::ModuleBuild::Repository:
file: lib/Alien/Base/ModuleBuild/Repository.pm
version: 0.000_002
version: 0.000_003
Alien::Base::ModuleBuild::Repository::FTP:
file: lib/Alien/Base/ModuleBuild/Repository/FTP.pm
version: 0.000_002
version: 0.000_003
Alien::Base::ModuleBuild::Repository::HTTP:
file: lib/Alien/Base/ModuleBuild/Repository/HTTP.pm
version: 0.000_002
version: 0.000_003
Alien::Base::ModuleBuild::Repository::Local:
file: lib/Alien/Base/ModuleBuild/Repository/Local.pm
version: 0.000_002
version: 0.000_003
Alien::Base::ModuleBuild::Utils:
file: lib/Alien/Base/ModuleBuild/Utils.pm
version: 0.000_002
version: 0.000_003
Alien::Base::PkgConfig:
file: lib/Alien/Base/PkgConfig.pm
version: 0.000_002
version: 0.000_003
recommends:
HTML::LinkExtor: 0
requires:
Archive::Extract: 0
Capture::Tiny: 0
File::ShareDir: 0
File::chdir: 0
File::chdir: 0.1005
List::MoreUtils: 0
Module::Build: 0.36
Perl::OSType: 0
Expand All @@ -67,4 +67,4 @@ resources:
bugtracker: http://github.com/jberger/Alien-Base/issues
license: http://dev.perl.org/licenses/
repository: http://github.com/jberger/Alien-Base
version: 0.000_002
version: 0.000_003
2 changes: 1 addition & 1 deletion lib/Alien/Base.pm
Expand Up @@ -3,7 +3,7 @@ package Alien::Base;
use strict;
use warnings;

our $VERSION = '0.000_002';
our $VERSION = '0.000_003';
$VERSION = eval $VERSION;

use Carp;
Expand Down
2 changes: 1 addition & 1 deletion lib/Alien/Base/ModuleBuild.pm
Expand Up @@ -3,7 +3,7 @@ package Alien::Base::ModuleBuild;
use strict;
use warnings;

our $VERSION = '0.000_002';
our $VERSION = '0.000_003';
$VERSION = eval $VERSION;

use parent 'Module::Build';
Expand Down
2 changes: 1 addition & 1 deletion lib/Alien/Base/ModuleBuild/Cabinet.pm
Expand Up @@ -3,7 +3,7 @@ package Alien::Base::ModuleBuild::Cabinet;
use strict;
use warnings;

our $VERSION = '0.000_002';
our $VERSION = '0.000_003';
$VERSION = eval $VERSION;

use Sort::Versions;
Expand Down
2 changes: 1 addition & 1 deletion lib/Alien/Base/ModuleBuild/File.pm
Expand Up @@ -3,7 +3,7 @@ package Alien::Base::ModuleBuild::File;
use strict;
use warnings;

our $VERSION = '0.000_002';
our $VERSION = '0.000_003';
$VERSION = eval $VERSION;

sub new {
Expand Down
2 changes: 1 addition & 1 deletion lib/Alien/Base/ModuleBuild/Repository.pm
Expand Up @@ -3,7 +3,7 @@ package Alien::Base::ModuleBuild::Repository;
use strict;
use warnings;

our $VERSION = '0.000_002';
our $VERSION = '0.000_003';
$VERSION = eval $VERSION;

use Carp;
Expand Down
2 changes: 1 addition & 1 deletion lib/Alien/Base/ModuleBuild/Repository/FTP.pm
Expand Up @@ -3,7 +3,7 @@ package Alien::Base::ModuleBuild::Repository::FTP;
use strict;
use warnings;

our $VERSION = '0.000_002';
our $VERSION = '0.000_003';
$VERSION = eval $VERSION;

use parent 'Alien::Base::ModuleBuild::Repository';
Expand Down
2 changes: 1 addition & 1 deletion lib/Alien/Base/ModuleBuild/Repository/HTTP.pm
Expand Up @@ -3,7 +3,7 @@ package Alien::Base::ModuleBuild::Repository::HTTP;
use strict;
use warnings;

our $VERSION = '0.000_002';
our $VERSION = '0.000_003';
$VERSION = eval $VERSION;

use Carp;
Expand Down
2 changes: 1 addition & 1 deletion lib/Alien/Base/ModuleBuild/Repository/Local.pm
Expand Up @@ -3,7 +3,7 @@ package Alien::Base::ModuleBuild::Repository::Local;
use strict;
use warnings;

our $VERSION = '0.000_002';
our $VERSION = '0.000_003';
$VERSION = eval $VERSION;

use Carp;
Expand Down
2 changes: 1 addition & 1 deletion lib/Alien/Base/ModuleBuild/Utils.pm
Expand Up @@ -4,7 +4,7 @@ package Alien::Base::ModuleBuild::Utils;
use strict;
use warnings;

our $VERSION = '0.000_002';
our $VERSION = '0.000_003';
$VERSION = eval $VERSION;

use Text::Balanced qw/extract_bracketed extract_delimited extract_multiple/;
Expand Down
2 changes: 1 addition & 1 deletion lib/Alien/Base/PkgConfig.pm
Expand Up @@ -3,7 +3,7 @@ package Alien::Base::PkgConfig;
use strict;
use warnings;

our $VERSION = '0.000_002';
our $VERSION = '0.000_003';
$VERSION = eval $VERSION;

use Carp;
Expand Down

0 comments on commit 1ab6c94

Please sign in to comment.