Skip to content

Commit

Permalink
0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
kianmeng committed May 2, 2019
1 parent 2d80e3e commit 7f37c9c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,10 @@ Revision history for WebService-Pokemon

{{$NEXT}}

0.11 2019-05-02 21:40:53 +08
- Fix missing module version
- Replace incorrect environment variable

0.10 2019-05-01 19:57:09 +08
- Autoload results by choice
- Remove CHI caching
Expand Down
2 changes: 1 addition & 1 deletion META.json
Expand Up @@ -85,7 +85,7 @@
"web" : "https://github.com/kianmeng/webservice-pokemon"
}
},
"version" : "0.10",
"version" : "0.11",
"x_contributors" : [
"Mohammad S Anwar <mohammad.anwar@yahoo.com>"
],
Expand Down
2 changes: 1 addition & 1 deletion lib/WebService/Pokemon.pm
Expand Up @@ -17,7 +17,7 @@ with 'Role::REST::Client';
use constant DEFAULT_ITEMS_PER_PAGE => 20;
use constant DEFAULT_ITEMS_OFFSET => 0;

our $VERSION = '0.10';
our $VERSION = '0.11';

has 'api_url' => (
isa => Str,
Expand Down
2 changes: 1 addition & 1 deletion lib/WebService/Pokemon/APIResourceList.pm
Expand Up @@ -8,7 +8,7 @@ use Moo;
use Types::Standard qw(Any ArrayRef HashRef InstanceOf Int Str);
use Test::More;

our $VERSION = '0.10';
our $VERSION = '0.11';

has api => (
isa => InstanceOf['WebService::Pokemon'],
Expand Down
2 changes: 1 addition & 1 deletion lib/WebService/Pokemon/NamedAPIResource.pm
Expand Up @@ -7,7 +7,7 @@ use namespace::clean;
use Moo;
use Types::Standard qw(HashRef InstanceOf);

our $VERSION = '0.10';
our $VERSION = '0.11';

has api => (
isa => InstanceOf['WebService::Pokemon'],
Expand Down

0 comments on commit 7f37c9c

Please sign in to comment.