Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
rjbs committed Mar 20, 2008
1 parent 85a4794 commit d5cba50
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for Module-Faker

0.005 2008-03-20
add (possibly to-be-renamed) Faker.order key to provides

0.004 2008-03-15
add omitted_files option (and test)
add some documentation
Expand Down
4 changes: 2 additions & 2 deletions lib/Module/Faker.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ Module::Faker - build fake dists for testing CPAN tools
=head1 VERSION
version 0.004
version 0.005
=cut

our $VERSION = '0.004';
our $VERSION = '0.005';

use Module::Faker::Dist;

Expand Down
2 changes: 1 addition & 1 deletion lib/Module/Faker/Dist.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package Module::Faker::Dist;
use Moose;

our $VERSION = '0.004';
our $VERSION = '0.005';

use Module::Faker::File;
use Module::Faker::Heavy;
Expand Down
2 changes: 1 addition & 1 deletion lib/Module/Faker/File.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package Module::Faker::File;
use Moose;

our $VERSION = '0.004';
our $VERSION = '0.005';

has filename => (is => 'ro', isa => 'Str', required => 1);
has content => (is => 'ro', isa => 'Str', required => 1);
Expand Down
2 changes: 1 addition & 1 deletion lib/Module/Faker/Heavy.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use strict;
use warnings;
package Module::Faker::Heavy;

our $VERSION = '0.004';
our $VERSION = '0.005';

use Carp ();
use Text::Template;
Expand Down
2 changes: 1 addition & 1 deletion lib/Module/Faker/Module.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package Module::Faker::Module;
use Moose;

our $VERSION = '0.004';
our $VERSION = '0.005';

use Module::Faker::Package;

Expand Down
2 changes: 1 addition & 1 deletion lib/Module/Faker/Package.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package Module::Faker::Package;
use Moose;

our $VERSION = '0.004';
our $VERSION = '0.005';

use Moose::Util::TypeConstraints;

Expand Down

0 comments on commit d5cba50

Please sign in to comment.