Skip to content

Commit dd8672e

Browse files
authored
Merge pull request #22 from samvera-labs/release/1.1.0
prep for release 1.1.0
2 parents 769c213 + cb921e7 commit dd8672e

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 1.1.0 (2020-01-21)
2+
3+
* replace linkeddata dependency with rdf and nokogiri
4+
* update dependency on bundler to ~> 2.0
5+
16
### 1.0.1 (2019-04-23)
27

38
* remove version restriction for linkeddata dependency

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ This is a ruby implementation of [LDPath](http://marmotta.apache.org/ldpath/lang
88

99
## Installation
1010

11+
### Required gem installation
12+
1113
Add this line to your application's Gemfile:
1214

1315
gem 'ldpath'
@@ -20,6 +22,10 @@ Or install it yourself as:
2022

2123
$ gem install ldpath
2224

25+
### Additional gem installations
26+
27+
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.
28+
2329
## Usage
2430

2531
```ruby

lib/ldpath/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Ldpath
2-
VERSION = '1.0.1'.freeze
2+
VERSION = '1.1.0'.freeze
33
end

0 commit comments

Comments
 (0)