From: Marius Gavrilescu Date: Sat, 19 Mar 2016 18:54:28 +0000 (+0200) Subject: Bump version and update Changes X-Git-Tag: 0.003^0 X-Git-Url: http://git.ieval.ro/?p=webservice-tdwtf.git;a=commitdiff_plain;h=1e0caaad51845fa693b274b8a2ddff6bf47bd2c5 Bump version and update Changes --- diff --git a/Changes b/Changes index 9cc1e2b..3c020ae 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension WebService::TDWTF. +0.003 2016-03-19T20:54+02:00 + - Add tdwtf_series function for new API call + - Add a --show-series argument to the tdwtf CLI + - Remove a test that is no longer relevant + 0.002 2016-01-16T20:56+00:00 - Add CLI interface diff --git a/README b/README index 8093c06..c7ddfdb 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -WebService-TDWTF version 0.001 +WebService-TDWTF version 0.003 ============================== WebService::TDWTF is an interface to the API of L. diff --git a/lib/App/TDWTF.pm b/lib/App/TDWTF.pm index 6a990ef..6f8a43b 100644 --- a/lib/App/TDWTF.pm +++ b/lib/App/TDWTF.pm @@ -8,7 +8,7 @@ use Encode qw/encode/; use HTML::FormatText; use WebService::TDWTF; -our $VERSION = '0.001'; +our $VERSION = '0.003'; sub print_list { my $idlen = length $_[0]->Id; diff --git a/lib/WebService/TDWTF.pm b/lib/WebService/TDWTF.pm index fe9ea4d..2a8d6e9 100644 --- a/lib/WebService/TDWTF.pm +++ b/lib/WebService/TDWTF.pm @@ -15,7 +15,7 @@ my @subs = qw/article list_recent list_series list_author series/; our @EXPORT = map { "tdwtf_$_" } @subs; our @EXPORT_OK = (@EXPORT, @subs); our %EXPORT_TAGS = (all => [@EXPORT_OK]); -our $VERSION = '0.002'; +our $VERSION = '0.003'; our $AGENT = "WebService-TDWTF/$VERSION"; our $BASE_URL = 'http://thedailywtf.com/api'; diff --git a/lib/WebService/TDWTF/Article.pm b/lib/WebService/TDWTF/Article.pm index c7fbe4d..dcdf9c1 100644 --- a/lib/WebService/TDWTF/Article.pm +++ b/lib/WebService/TDWTF/Article.pm @@ -5,7 +5,7 @@ use strict; use warnings; use parent qw/Class::Accessor::Fast/; -our $VERSION = '0.002'; +our $VERSION = '0.003'; use WebService::TDWTF ();