Skip to content

Commit

Permalink
version++
Browse files Browse the repository at this point in the history
  • Loading branch information
sekimura committed Oct 14, 2011
1 parent 910bf11 commit 9d7ea49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Changes
@@ -1,5 +1,10 @@
Revision history for Perl extension LWP::UserAgent::WithCache.

0.12 Fri Oct 14 13:41:29 PDT 2011
- Fixed "Expires" header handling logic
- implemented 304 Not Modified response handler to return cached response object
- Thanks to Chris Cherry https://github.com/ctcherry for reporting bugs and reviewing changes

0.11 Tue Mar 24 13:44:00 PDT 2009
- pulled from tokuhirom/lwp-useragent-withcache to fix a bug filling undef hash values into Cache::FileCache constructor option (Thanks tokuhirom!)

Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/UserAgent/WithCache.pm
Expand Up @@ -8,7 +8,7 @@ use Cache::FileCache;
use File::HomeDir;
use File::Spec;

our $VERSION = '0.11';
our $VERSION = '0.12';

our %default_cache_args = (
'namespace' => 'lwp-cache',
Expand Down

1 comment on commit 9d7ea49

@ctcherry
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the shoutout! Great idea with this library, it was just what I needed for a little easy caching.

Please sign in to comment.