Bump version and update Changes 0.001
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 6 Jun 2015 19:42:02 +0000 (22:42 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 6 Jun 2015 19:42:02 +0000 (22:42 +0300)
Changes
README
lib/WWW/BackpackTF.pm
lib/WWW/BackpackTF/Currency.pm
lib/WWW/BackpackTF/Item.pm
lib/WWW/BackpackTF/User.pm

diff --git a/Changes b/Changes
index d94f94a2861af018f45d65fb9ff4e42910e2e2eb..36d1ab6886b7a9dadc198cc71b0e550281998644 100644 (file)
--- 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 9483b547c3acca629526833d3279bf59560a0ef0..c1a63cc5301b11535db3df7b2a9125524b9c7af7 100644 (file)
--- 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,
index 06cfcf5075654b8f7d0de222848e9c9edfb2f1fb..a1a2508554b81a95c4aabeb7d433097eef9dc866 100644 (file)
@@ -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, E<lt>marius@ieval.roE<gt>
 
 =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,
index f2776111e54118fd863ee91d591c00ab60a5455d..aa7bbf4251c8d73b5176df9a1b28aa3c2503f5e8 100644 (file)
@@ -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, E<lt>marius@ieval.roE<gt>
 
 =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,
index aeb7b0dfcfdb2c18b1b5dd524c0b96bc9b2ec372..7c5d57f5c3683600c34033dd393f47420a190ed0 100644 (file)
@@ -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, E<lt>marius@ieval.roE<gt>
 
 =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,
index 0d40c2c004024fbfafbf8ea683da31fefb23dacd..3120bcbc20c9ed083b802040880b820df55f6480 100644 (file)
@@ -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, E<lt>marius@ieval.roE<gt>
 
 =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,
This page took 0.016722 seconds and 4 git commands to generate.