diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6cdf656 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +Config-General-*.tar.gz +MYMETA.json +MYMETA.yml +Makefile +blib/ +pm_to_blib +t/56.out +t/cfg.51.out +t/cfg.52.out +t/cfg.out +t/complex.out +t/test.cfg +t/test.rc.out diff --git a/Changelog b/Changelog index 5b566ff..a855bc4 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,7 @@ +2.67 - fix github.com/TLINDEN/Config-General/issues/5: + fixing tests (add missing file to dist tarball). + - created gitignore file. + 2.66 - fix github.com/TLINDEN/Config-General/issues/1: add support to quote values containing whitespace using the new flag -AlwaysQuoteOutput. diff --git a/General.pm b/General.pm index 8df9a68..02e3c04 100644 --- a/General.pm +++ b/General.pm @@ -32,7 +32,7 @@ use Carp::Heavy; use Carp; use Exporter; -$Config::General::VERSION = "2.66"; +$Config::General::VERSION = "2.67"; use base qw(Exporter); our @EXPORT_OK = qw(ParseConfig SaveConfig SaveConfigString); @@ -2888,7 +2888,7 @@ Thomas Linden =head1 VERSION -2.66 +2.67 =cut diff --git a/MANIFEST b/MANIFEST index 1ac74ee..725b31d 100644 --- a/MANIFEST +++ b/MANIFEST @@ -54,3 +54,4 @@ t/cfg.51 t/utf8_bom/bar.cfg t/utf8_bom/foo.cfg t/cfg.58 +t/cfg.59