From: Marius Gavrilescu Date: Sat, 14 Feb 2015 22:31:23 +0000 (+0200) Subject: Bump version and update Changes X-Git-Tag: 0.001001 X-Git-Url: http://git.ieval.ro/?p=zeal.git;a=commitdiff_plain;h=refs%2Ftags%2F0.001001 Bump version and update Changes --- diff --git a/Changes b/Changes index 032520a..a7fde6e 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension Zeal. +0.001001 2015-02-15T00:31+02:00 + - Use chdir manually instead of passing -C to tar + - Force using Archive::Tar when unpacking compressed tarballs on solaris + - Recommend IO::Zlib and IO::Uncompress::Bzip2 + 0.001 2015-02-07T22:07+02:00 - First stable release diff --git a/README b/README index eb596b3..450cfc6 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -Zeal version 0.001 -================== +Zeal version 0.001001 +===================== Dash is an offline API documentation browser. Zeal.pm is a module for reading and querying Dash documentation sets. @@ -31,7 +31,7 @@ This module requires these other modules and libraries: COPYRIGHT AND LICENCE -Copyright (C) 2014 by Marius Gavrilescu +Copyright (C) 2014-2015 by Marius Gavrilescu This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.20.1 or, diff --git a/lib/Zeal.pm b/lib/Zeal.pm index b5cc99e..2ea9ad7 100644 --- a/lib/Zeal.pm +++ b/lib/Zeal.pm @@ -5,7 +5,7 @@ use strict; use warnings; use re '/s'; -our $VERSION = '0.001'; +our $VERSION = '0.001001'; use File::Spec::Functions qw/catfile/; diff --git a/lib/Zeal/Docset.pm b/lib/Zeal/Docset.pm index d3e013b..3143fc8 100644 --- a/lib/Zeal/Docset.pm +++ b/lib/Zeal/Docset.pm @@ -4,7 +4,7 @@ use 5.014000; use strict; use warnings; -our $VERSION = '0.001'; +our $VERSION = '0.001001'; use parent qw/Class::Accessor::Fast/; __PACKAGE__->mk_ro_accessors(qw/path plist dbh name id family/); diff --git a/lib/Zeal/Document.pm b/lib/Zeal/Document.pm index ccc5de6..9a533fb 100644 --- a/lib/Zeal/Document.pm +++ b/lib/Zeal/Document.pm @@ -4,7 +4,7 @@ use 5.014000; use strict; use warnings; -our $VERSION = '0.001'; +our $VERSION = '0.001001'; use parent qw/Class::Accessor::Fast/; __PACKAGE__->mk_accessors(qw/id name type path anchor docset/); diff --git a/lib/Zeal/Feed.pm b/lib/Zeal/Feed.pm index ba1767f..6c1ebc2 100644 --- a/lib/Zeal/Feed.pm +++ b/lib/Zeal/Feed.pm @@ -5,7 +5,7 @@ use strict; use warnings; use re '/s'; -our $VERSION = '0.001'; +our $VERSION = '0.001001'; use parent qw/Class::Accessor::Fast/; __PACKAGE__->mk_ro_accessors(qw/version/);