Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jberger committed May 9, 2012
1 parent 4274338 commit 339771a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
5 changes: 5 additions & 0 deletions Build.PL
Expand Up @@ -6,6 +6,11 @@ use Module::Build;

my $gsl_libs = $ENV{PERLGSL_LIBS} || qx! gsl-config --libs !;

unless ($gsl_libs) {
print "PerlGSL::Integration::MultiDim requires the GSL library to be installed and available. Use PERLGSL_LIBS to specify the linker flags if needed.\n";
exit( ! $ENV{AUTOMATED_TESTING} );
}

my $build = Module::Build->new(
module_name => 'PerlGSL::Integration::MultiDim',
dist_author => 'Joel Berger <joel.a.berger@gmail.com>',
Expand Down
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
Revision history for Perl module PerlGSL::Integration::MultiDim.

0.002 May 9, 2012
- Don't attempt to install without GSL

0.001 May 8, 2102
- Initial release
- First release from the PerlGSL dist
Expand Down
4 changes: 2 additions & 2 deletions META.json
Expand Up @@ -38,7 +38,7 @@
"provides" : {
"PerlGSL::Integration::MultiDim" : {
"file" : "lib/PerlGSL/Integration/MultiDim.pm",
"version" : "0.001"
"version" : "0.002"
}
},
"release_status" : "stable",
Expand All @@ -53,5 +53,5 @@
"url" : "http://github.com/jberger/PerlGSL-Integration-MultiDim"
}
},
"version" : "0.001"
"version" : "0.002"
}
4 changes: 2 additions & 2 deletions META.yml
Expand Up @@ -19,11 +19,11 @@ no_index:
provides:
PerlGSL::Integration::MultiDim:
file: lib/PerlGSL/Integration/MultiDim.pm
version: 0.001
version: 0.002
requires:
perl: 5.008
resources:
bugtracker: http://github.com/jberger/PerlGSL-Integration-MultiDim/issues
license: http://dev.perl.org/licenses/
repository: http://github.com/jberger/PerlGSL-Integration-MultiDim
version: 0.001
version: 0.002
2 changes: 1 addition & 1 deletion lib/PerlGSL/Integration/MultiDim.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;

use Carp;

our $VERSION = '0.001';
our $VERSION = '0.002';
$VERSION = eval $VERSION;

require XSLoader;
Expand Down

0 comments on commit 339771a

Please sign in to comment.