From: Marius Gavrilescu Date: Sat, 10 Jan 2015 14:43:18 +0000 (+0200) Subject: Bump version and update Changes X-Git-Tag: 0.000_003^0 X-Git-Url: http://git.ieval.ro/?p=zeal.git;a=commitdiff_plain;h=fb9b7e9f161c44464fc8890644f72599195a195f Bump version and update Changes --- diff --git a/Changes b/Changes index 267a9f8..2c4ba76 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension Zeal. +0.000_003 2015-01-03T16:43+02:00 + - Make family:query syntax in Zeal->query stricter + - Add support for anchors + - Make Zeal->sets die if given family does not exist + 0.000_002 2014-12-30T23:50+02:00 - Fix POD formatting in Zeal.pm - Fix PREREQ_PM diff --git a/lib/Zeal.pm b/lib/Zeal.pm index 197f9b2..1ba955e 100644 --- a/lib/Zeal.pm +++ b/lib/Zeal.pm @@ -5,7 +5,7 @@ use strict; use warnings; use re '/s'; -our $VERSION = '0.000_002'; +our $VERSION = '0.000_003'; use File::Spec::Functions qw/catfile/; diff --git a/lib/Zeal/Docset.pm b/lib/Zeal/Docset.pm index bb7665f..1ac98e2 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.000_002'; +our $VERSION = '0.000_003'; 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 7426f9b..3ce27bc 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.000_002'; +our $VERSION = '0.000_003'; 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 d685926..d51aebb 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.000_002'; +our $VERSION = '0.000_003'; use parent qw/Class::Accessor::Fast/; __PACKAGE__->mk_ro_accessors(qw/version/);