Skip to content

Commit

Permalink
Updating for release of version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanwills-optus committed Sep 24, 2018
1 parent b12db24 commit 81c66f4
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 15 deletions.
12 changes: 12 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
Revision history for Data-Context-BEM

0.1.1 2018-09-24
Updating for release of version 0.1.1
Fixning config dependencies (Ivan Wills)
Updated date (Ivan Wills)
Fixed typo (Ivan Wills)
Adding auto builds (Ivan Wills)
Changed to match Data::Context (Ivan Wills)
Fixed manifest (Ivan Wills)
Fixed version numbers (Ivan Wills)
Added perl 5.24 to travis build (Ivan Wills)
Added JSON dependency (Ivan Wills)

0.1 2016-02-14
Updating for release of version 0.1
Added missing JSON::XS dependency (Ivan Wills)
Expand Down
4 changes: 2 additions & 2 deletions bin/bem-static
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use Path::Tiny;
use Data::Context::BEM;
use Data::Context::Log;

our $VERSION = version->new('0.1');
our $VERSION = version->new('0.1.1');
my ($name) = $PROGRAM_NAME =~ m{^.*/(.*?)$}mxs;

my %option = (
Expand Down Expand Up @@ -136,7 +136,7 @@ bem-static - Generate static html from BEM data
=head1 VERSION
This documentation refers to bem-static version 0.1
This documentation refers to bem-static version 0.1.1
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Data/Context/BEM.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use File::ShareDir qw/module_dir dist_dir/;
use Path::Tiny;
use JSON::XS;

our $VERSION = version->new('0.1');
our $VERSION = version->new('0.1.1');

extends 'Data::Context';

Expand Down Expand Up @@ -290,7 +290,7 @@ Data::Context::BEM - A Perl implementation of BEM
=head1 VERSION
This documentation refers to Data::Context::BEM version 0.1
This documentation refers to Data::Context::BEM version 0.1.1
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Data/Context/BEM/Block.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use English qw/ -no_match_vars /;

extends 'Data::Context::Actions';

our $VERSION = version->new('0.1');
our $VERSION = version->new('0.1.1');

sub get_data {
my ($self, $value, $vars, $path, $instance) = @_;
Expand All @@ -36,7 +36,7 @@ Data::Context::BEM::Block - The base module for custom BEM block handlers
=head1 VERSION
This documentation refers to Data::Context::BEM::Block version 0.1
This documentation refers to Data::Context::BEM::Block version 0.1.1
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Data/Context/BEM/Block/Page.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use English qw/ -no_match_vars /;

extends 'Data::Context::BEM::Block';

our $VERSION = version->new('0.1');
our $VERSION = version->new('0.1.1');

__PACKAGE__->meta->make_immutable;

Expand All @@ -31,7 +31,7 @@ Data::Context::BEM::Block::Page - An example BEM block handler
=head1 VERSION
This documentation refers to Data::Context::BEM::Block::Page version 0.1
This documentation refers to Data::Context::BEM::Block::Page version 0.1.1
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Data/Context/BEM/Instance.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use Data::Context::BEM::Merge;

extends 'Data::Context::Instance';

our $VERSION = version->new('0.1');
our $VERSION = version->new('0.1.1');

has blocks => (
is => 'rw',
Expand Down Expand Up @@ -60,7 +60,7 @@ Data::Context::BEM::Instance - An instance of a BEM script
=head1 VERSION
This documentation refers to Data::Context::BEM::Instance version 0.1
This documentation refers to Data::Context::BEM::Instance version 0.1.1
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Data/Context/BEM/Merge.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use List::MoreUtils qw/uniq pairwise/;
use Data::Dumper qw/Dumper/;
use English qw/ -no_match_vars /;

our $VERSION = version->new('0.1');
our $VERSION = version->new('0.1.1');

sub merge {
my ($self, $child, $parent) = @_;
Expand Down Expand Up @@ -74,7 +74,7 @@ Data::Context::BEM::Merge - Merge algorithm that merges arrays (not appending th
=head1 VERSION
This documentation refers to Data::Context::BEM::Merge version 0.1
This documentation refers to Data::Context::BEM::Merge version 0.1.1
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions t/lib/Data/Context/BEM/Block/Story.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use English qw/ -no_match_vars /;

extends 'Data::Context::BEM::Block';

our $VERSION = version->new('0.1');
our $VERSION = version->new('0.1.1');

sub get_data {
my ( $self, $data ) = @_;
Expand All @@ -37,7 +37,7 @@ Data::Context::BEM::Block::Story - <One-line description of module's purpose>
=head1 VERSION
This documentation refers to Data::Context::BEM::Block::Story version 0.1
This documentation refers to Data::Context::BEM::Block::Story version 0.1.1
=head1 SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion t/pod-coverage.t
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage

# Test::Pod::Coverage doesn't require a minimum Pod::Coverage version,
# but older versions don't recognize some common documentation styles
my $min_pc = 0.18;
my $min_pc = 0.1.18;
eval "use Pod::Coverage $min_pc";
plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage"
if $@;
Expand Down

0 comments on commit 81c66f4

Please sign in to comment.