Skip to content

Commit

Permalink
0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
phochste committed Mar 16, 2016
1 parent 99a5e4f commit e1c868e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ Revision history for RDF::LDF

{{$NEXT}}

0.18 2016-03-16 11:46:48 CET
- Removing the caching component into a separate module

0.17 2016-02-22 10:36:32 CET
- Removing Data::Util dependency

Expand Down
3 changes: 2 additions & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"Getopt::Long" : "0",
"HTTP::Message" : "0",
"JSON" : "0",
"LWP::UserAgent::CHICaching" : "0",
"Log::Any" : "0",
"Moo" : "0",
"RDF::NS" : "20150725",
Expand Down Expand Up @@ -83,7 +84,7 @@
"web" : "https://github.com/phochste/RDF-LDF"
}
},
"version" : "0.17",
"version" : "0.18",
"x_contributors" : [
"Gregory Todd Williams <[email protected]>",
"Jakob Voß <[email protected]>",
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ RDF::LDF - Linked Data Fragments client
use RDF::Trine::Store::LDF;
use RDF::Trine::Store;

# To use a HTTP cache:
use LWP::UserAgent::CHICaching;
my $cache = CHI->new( driver => 'Memory', global => 1 );
my $ua = LWP::UserAgent::CHICaching->new(cache => $cache);
RDF::Trine->default_useragent($ua);

my $store = RDF::Trine::Store->new_with_config({
storetype => 'LDF',
url => $url
Expand Down
2 changes: 1 addition & 1 deletion lib/RDF/LDF.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use JSON;
use URI::Template;
use RDF::LDF::Error;

our $VERSION = '0.17';
our $VERSION = '0.18';
{
my $ua = RDF::Trine->default_useragent;
$ua->agent("RDF:::LDF/$RDF::LDF::VERSION " . $ua->_agent);
Expand Down

0 comments on commit e1c868e

Please sign in to comment.