From 855d9a8e882a95dc236bdacc034621933d59bdde Mon Sep 17 00:00:00 2001 From: "E. Lynette Rayle" Date: Tue, 21 Jan 2020 16:01:32 -0500 Subject: [PATCH 1/2] prep for release 1.1.0 * replace linkeddata dependency with rdf and nokogiri * update dependency on bundler to ~> 2.0 --- CHANGELOG.md | 5 +++++ lib/ldpath/version.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e75961f..0774faa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### 1.1.0 (2020-01-21) + +* replace linkeddata dependency with rdf and nokogiri +* update dependency on bundler to ~> 2.0 + ### 1.0.1 (2019-04-23) * remove version restriction for linkeddata dependency diff --git a/lib/ldpath/version.rb b/lib/ldpath/version.rb index ee9edeb..f37ffb7 100644 --- a/lib/ldpath/version.rb +++ b/lib/ldpath/version.rb @@ -1,3 +1,3 @@ module Ldpath - VERSION = '1.0.1'.freeze + VERSION = '1.1.0'.freeze end From cb921e7da63eb2e6d382700897df0554e98746eb Mon Sep 17 00:00:00 2001 From: "E. Lynette Rayle" Date: Tue, 21 Jan 2020 16:34:29 -0500 Subject: [PATCH 2/2] update readme to include information about installing rdf serialization gems --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 2e28842..7db0977 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,8 @@ This is a ruby implementation of [LDPath](http://marmotta.apache.org/ldpath/lang ## Installation +### Required gem installation + Add this line to your application's Gemfile: gem 'ldpath' @@ -20,6 +22,10 @@ Or install it yourself as: $ gem install ldpath +### Additional gem installations + +To support RDF serializations, you will need to either install the [linkeddata gem](https://github.com/ruby-rdf/linkeddata) which installs a large set of RDF serializations or, in order to have a smaller dependency footprint, install gems for only the serializations your plan to use in your app. The list of serializations are in the [README](https://github.com/ruby-rdf/linkeddata/blob/develop/README.md#features) for the linkeddata gem. + ## Usage ```ruby