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
 
 
-WebService-TDWTF version 0.001
+WebService-TDWTF version 0.003
 ==============================
 
 WebService::TDWTF is an interface to the API of L<http://thedailywtf.com>.
 
 use HTML::FormatText;
 use WebService::TDWTF;
 
-our $VERSION = '0.001';
+our $VERSION = '0.003';
 
 sub print_list {
        my $idlen = length $_[0]->Id;
 
 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';
 
 
 use warnings;
 use parent qw/Class::Accessor::Fast/;
 
-our $VERSION = '0.002';
+our $VERSION = '0.003';
 
 use WebService::TDWTF ();