Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.07.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 2474829..dbfba5e 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl extension Tiffany

+0.07
+
+    - fixed deps
+
 0.06

     - require Test::Requires
  • Loading branch information
tokuhirom committed Apr 16, 2012
1 parent ed16ec3 commit c9eca2b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ my $build = Module::Build->new(
license => 'perl',
recursive_test_files => 1,
dynamic_config => 0,
build_requires => { 'Test::More' => '0.98' },
test_requires => { 'Test::Requires' => '0.98' },
build_requires => {
'Test::More' => '0.98',
'Test::Requires' => '0.98',
},
configure_requires => { 'Module::Build' => '0.38' },
requires => { 'perl' => '5.00800' },
no_index => { 'directory' => [ 'eg', 'inc', 't', 'xt' ] },
Expand Down
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for Perl extension Tiffany

0.07

- fixed deps

0.06

- require Test::Requires
Expand Down
2 changes: 1 addition & 1 deletion lib/Tiffany.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Tiffany;
use strict;
use warnings;
use 5.00800;
our $VERSION = '0.06';
our $VERSION = '0.07';

sub load {
my ($class, $klass, $args) = @_;
Expand Down

0 comments on commit c9eca2b

Please sign in to comment.