Skip to content

Commit

Permalink
Version 0.9.9 with Changes and MANIFEST.SKIP
Browse files Browse the repository at this point in the history
  • Loading branch information
kamenov committed May 28, 2015
1 parent a1fb540 commit ec95392
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Change history for Perl extension PDF::Table.

Version 0.9.8/9

Added MANIFEST.SKIP and fixed a broken build with 0.9.8
Added some utility methods to new()

Version 0.9.7 - for a detailed log and changed files visit GitHub

Added a few initialisation methods to the help new() and later on accomodate static initialisation within table() textblock()
Expand Down
12 changes: 12 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
Changes
examples/header.pl
examples/header_repeat_with_cell_props.pl
examples/row_height.pl
examples/sample1.pl
examples/table_of_lorem.pdf
lib/PDF/Table.pm
Makefile
Makefile.PL
MANIFEST
MANIFEST.SKIP
MYMETA.json
MYMETA.yml
README
README.md
t/Basics.t
t/lib/PDFAPI2Mock.pm
t/lib/TestData.pm
t/PDF-Table.t
t/pod.t
util/pod2cpanhtml.pl
16 changes: 16 additions & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#Experimental/development/testing scripts and files
^experiment.*$
^issue_scripts/.*

#Backups
.*\.old$
.*\.bak$

#Blib folder
^blib/*

#Git folder
^\.git/*

#Hidden files
^\..*
2 changes: 1 addition & 1 deletion lib/PDF/Table.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use 5.006;
use strict;
use warnings;
use Carp;
our $VERSION = '0.9.8';
our $VERSION = '0.9.9';

print __PACKAGE__.' is version: '.$VERSION.$/ if($ENV{'PDF_TABLE_DEBUG'});

Expand Down

0 comments on commit ec95392

Please sign in to comment.