diff options
author | franck cuny <franck@lumberjaph.net> | 2009-12-08 10:37:22 +0100 |
---|---|---|
committer | franck cuny <franck@lumberjaph.net> | 2009-12-08 10:37:22 +0100 |
commit | 6d0081c83634f6591780945c551dd46a466a05a9 (patch) | |
tree | 75269de3ce474e4e0a4a45e26e346ac5e51c4ce0 | |
parent | Merge branch 'topic/create_tests' (diff) | |
download | moosex-net-api-6d0081c83634f6591780945c551dd46a466a05a9.tar.gz |
Checking in changes prior to tagging of version 0.02. Changelog diff is:
diff --git a/Changes b/Changes index e512550..c299913 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,8 @@ Revision history for Perl extension MooseX::Net::API +0.02 Tue 08 Dec 2009 10:36:03 AM CET + - api_base_url is optional + - add tests to play with catalyst + 0.01 Mon Nov 23 14:54:25 2009 - original version
-rw-r--r-- | Changes | 4 | ||||
-rw-r--r-- | lib/MooseX/Net/API.pm | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Changes b/Changes index e512550..c299913 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,8 @@ Revision history for Perl extension MooseX::Net::API +0.02 Tue 08 Dec 2009 10:36:03 AM CET + - api_base_url is optional + - add tests to play with catalyst + 0.01 Mon Nov 23 14:54:25 2009 - original version diff --git a/lib/MooseX/Net/API.pm b/lib/MooseX/Net/API.pm index 4e1ae5e..a2f663e 100644 --- a/lib/MooseX/Net/API.pm +++ b/lib/MooseX/Net/API.pm @@ -13,7 +13,7 @@ use MooseX::Net::API::Meta::Method; use MooseX::Net::API::Role::Serialize; use MooseX::Net::API::Role::Deserialize; -our $VERSION = '0.01'; +our $VERSION = '0.02'; my $list_content_type = { 'json' => 'application/json', |