rdf-jena 0.3.0-java → 0.3.1-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/VERSION +1 -1
- data/lib/rdf/jena/jars/{rdf-jena-0.3.0.jar → rdf-jena-0.3.1.jar} +0 -0
- data/lib/rdf/jena.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 028713405f595f83a525f92476393f03c92ada13
|
4
|
+
data.tar.gz: 17a46a9a8a64b19b48186556437c2a95c8ee1e6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8766deb6160cf371d2dd40236d67bb83e7292ed9ad103cfe9df33a49795a39765d1b34556578ed5069d9994c923399d69f7e3265cbee3cf5ce2bc318c567b0f4
|
7
|
+
data.tar.gz: 6ada77d2e3a51acdf02fed5888e05a8e71450c9a15281701bfd90d35c580a65f290bdc8782223e7d0c3980f4a8a142042ac8d718693633c6cf498808e62e8a43
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,14 @@ All notable changes to rdf-jena will be documented in this file. The curated log
|
|
4
4
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
6
6
|
|
7
|
+
## [0.3.1][0.3.1] - 2015-12-08
|
8
|
+
### Fixed
|
9
|
+
- Fixed RDF::Jena::Repository to store statements in the correct graph. If a graph_name is not provided the default graph for the Jena dataset is used.
|
10
|
+
- Fixed has_statement? and query_pattern to support nilable s,p,o,c values.
|
11
|
+
|
12
|
+
### Added
|
13
|
+
- Added insert_file to insert a path without having to create an RDF::Reader.
|
14
|
+
|
7
15
|
## [0.3.0][0.3.0] - 2015-12-07
|
8
16
|
### Changed
|
9
17
|
- RDF::Jena::Repository now acts like a Jena DatasetGraph. This can be treated like a quad store as well as individual graphs (i.e. each_graph).
|
@@ -35,5 +43,6 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
35
43
|
- Supporting boolean flag on RDF::Repository to union named graphs with the default when retrieved (see `each_graph`).
|
36
44
|
|
37
45
|
[RDF.rb]: https://github.com/ruby-rdf/rdf
|
46
|
+
[0.3.1]: https://github.com/abargnesi/rdf-jena/compare/0.3.0...0.3.1
|
38
47
|
[0.3.0]: https://github.com/abargnesi/rdf-jena/compare/0.2.1...0.3.0
|
39
48
|
[0.2.1]: https://github.com/abargnesi/rdf-jena/compare/0.2.0...0.2.1
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.1
|
Binary file
|
data/lib/rdf/jena.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rdf-jena
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Anthony Bargnesi
|
@@ -149,7 +149,7 @@ files:
|
|
149
149
|
- VERSION
|
150
150
|
- ext/jruby/extconf.rb
|
151
151
|
- lib/rdf/jena.rb
|
152
|
-
- lib/rdf/jena/jars/rdf-jena-0.3.
|
152
|
+
- lib/rdf/jena/jars/rdf-jena-0.3.1.jar
|
153
153
|
- lib/rdf/jena/version.rb
|
154
154
|
- rdf-jena.gemspec
|
155
155
|
homepage: https://github.com/abargnesi/rdf-jena
|