From: Marius Gavrilescu Date: Sat, 6 Jun 2015 19:42:02 +0000 (+0300) Subject: Bump version and update Changes X-Git-Tag: 0.001^0 X-Git-Url: http://git.ieval.ro/?p=www-backpacktf.git;a=commitdiff_plain;h=bd910ad7ba680507495e5210dac167484bbdde7c Bump version and update Changes --- diff --git a/Changes b/Changes index d94f94a..36d1ab6 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Perl extension WWW::BackpackTF. +0.001 2015-06-06T22:42+03:00 + - First stable release + - Do not depend on LWP + - Add CSGO constant + - Add perlcritic test + 0.000_003 2014-10-12T01:38+03:00 - Switch from JSON to JSON::MaybeXS - Add a network test for get_users diff --git a/README b/README index 9483b54..c1a63cc 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ WWW-BackpackTF version 0.000_002 ================================ -WWW-BackpackTF is an interface to the backpack.tf Team Fortress 2 and Dota 2 trading service. +WWW-BackpackTF is an interface to the backpack.tf Team Fortress 2, Dota 2 and Counter-Strike: Global Offensive trading service. It wraps the API described at http://backpack.tf/api. @@ -18,11 +18,13 @@ DEPENDENCIES This module requires these other modules and libraries: -* JSON +* Test::RequiresInternet +* JSON::MaybeXS +* PerlX::Maybe 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.18.2 or, diff --git a/lib/WWW/BackpackTF.pm b/lib/WWW/BackpackTF.pm index 06cfcf5..a1a2508 100644 --- a/lib/WWW/BackpackTF.pm +++ b/lib/WWW/BackpackTF.pm @@ -4,7 +4,7 @@ use 5.014000; use strict; use warnings; use parent qw/Exporter/; -our $VERSION = '0.000_003'; +our $VERSION = '0.001'; our @EXPORT_OK = qw/TF2 DOTA2/; use constant +{ ## no critic (Capitalization) @@ -72,6 +72,8 @@ sub get_currencies { 1; __END__ +=encoding utf-8 + =head1 NAME WWW::BackpackTF - interface to the backpack.tf trading service @@ -216,7 +218,7 @@ Marius Gavrilescu, Emarius@ieval.roE =head1 COPYRIGHT AND LICENSE -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.18.2 or, diff --git a/lib/WWW/BackpackTF/Currency.pm b/lib/WWW/BackpackTF/Currency.pm index f277611..aa7bbf4 100644 --- a/lib/WWW/BackpackTF/Currency.pm +++ b/lib/WWW/BackpackTF/Currency.pm @@ -3,7 +3,7 @@ package WWW::BackpackTF::Currency; use 5.014000; use strict; use warnings; -our $VERSION = '0.000_003'; +our $VERSION = '0.001'; sub new{ my ($class, $name, $content) = @_; @@ -119,7 +119,7 @@ Marius Gavrilescu, Emarius@ieval.roE =head1 COPYRIGHT AND LICENSE -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.18.2 or, diff --git a/lib/WWW/BackpackTF/Item.pm b/lib/WWW/BackpackTF/Item.pm index aeb7b0d..7c5d57f 100644 --- a/lib/WWW/BackpackTF/Item.pm +++ b/lib/WWW/BackpackTF/Item.pm @@ -3,7 +3,7 @@ package WWW::BackpackTF::Item; use 5.014000; use strict; use warnings; -our $VERSION = '0.000_003'; +our $VERSION = '0.001'; sub new{ my ($class, $name, $content) = @_; @@ -107,7 +107,7 @@ Marius Gavrilescu, Emarius@ieval.roE =head1 COPYRIGHT AND LICENSE -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.18.2 or, diff --git a/lib/WWW/BackpackTF/User.pm b/lib/WWW/BackpackTF/User.pm index 0d40c2c..3120bcb 100644 --- a/lib/WWW/BackpackTF/User.pm +++ b/lib/WWW/BackpackTF/User.pm @@ -3,7 +3,7 @@ package WWW::BackpackTF::User; use 5.014000; use strict; use warnings; -our $VERSION = '0.000_003'; +our $VERSION = '0.001'; sub new{ my ($class, $content) = @_; @@ -141,7 +141,7 @@ Marius Gavrilescu, Emarius@ieval.roE =head1 COPYRIGHT AND LICENSE -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.18.2 or,