You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by wi...@apache.org on 2017/11/02 02:36:09 UTC

commons-rdf git commit: updated release notes

Repository: commons-rdf
Updated Branches:
  refs/heads/0.5.0-RC 60c8c5903 -> 7f093843a


updated release notes


Project: http://git-wip-us.apache.org/repos/asf/commons-rdf/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-rdf/commit/7f093843
Tree: http://git-wip-us.apache.org/repos/asf/commons-rdf/tree/7f093843
Diff: http://git-wip-us.apache.org/repos/asf/commons-rdf/diff/7f093843

Branch: refs/heads/0.5.0-RC
Commit: 7f093843ade3afe05520f2352fd7224e1ec49120
Parents: 60c8c59
Author: Sergio Fernández <se...@wikier.org>
Authored: Wed Nov 1 19:36:02 2017 -0700
Committer: Sergio Fernández <se...@wikier.org>
Committed: Wed Nov 1 19:36:02 2017 -0700

----------------------------------------------------------------------
 RELEASE-NOTES.txt                    | 19 +++++++++++++++++++
 src/site/markdown/implementations.md |  8 ++++----
 2 files changed, 23 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-rdf/blob/7f093843/RELEASE-NOTES.txt
----------------------------------------------------------------------
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index b192d2b..ded7ecb 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -5,6 +5,25 @@
 See https://issues.apache.org/jira/browse/COMMONSRDF/
 for issues fixed since the last release.
 
+## 0.5.0 (2017-11)
+
+This is the first release after graduation. Although there are not API changes
+nor big improvements, it updates different core aspects and dependencies.
+
+* [COMMONSRDF-66] - JenaDatasetImpl.toString() throws RIOT exception
+* [COMMONSRDF-62] - japicmp-maven-plugin breaking build because there is at least one incompatibility
+* [COMMONSRDF-63] - AbstractRDFParserTest.parseFile and parseFileContentType broken under Mac OS X
+* [COMMONSRDF-52] - Duplicate Bundle-SymbolicName values across all components
+* [COMMONSRDF-55] - Stream of Jena quads use wrong IRI for default graph
+* [COMMONSRDF-47] - RDFSyntax should be interface, not enum
+* [COMMONSRDF-51] - RDF-1.1 specifies that language tags need to be compared using lower-case
+* [COMMONSRDF-57] - Use newer dependency Jena/RDF4J/JSONLD Java
+* [COMMONSRDF-53] - Add ServiceLoader support in OSGi
+* [COMMONSRDF-64] - Add Automatic-Module-Name to bundle manifest
+* [COMMONSRDF-65] - Upgrade to Jena 3.4.0, RDF4J 2.2.2
+* [COMMONSRDF-59] - Fix javadocs warnings
+* [COMMONSRDF-54] - overloaded versions of RDF4J#asRDFTerm(org.eclipse.rdf4j.model.Value)
+
 
 ## 0.3.0-incubating (2016-11)
 

http://git-wip-us.apache.org/repos/asf/commons-rdf/blob/7f093843/src/site/markdown/implementations.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/implementations.md b/src/site/markdown/implementations.md
index 9918f1d..c5f633e 100644
--- a/src/site/markdown/implementations.md
+++ b/src/site/markdown/implementations.md
@@ -61,7 +61,7 @@ usage (e.g. prototyping and creating graph fragments).
 <dependency>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-rdf-simple</artifactId>
-    <version>0.3.0-incubating</version>
+    <version>0.5.0</version>
 </dependency>
 ```
 
@@ -85,7 +85,7 @@ Graph graph = rdf.createGraph();
 <dependency>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-rdf-jena</artifactId>
-    <version>0.3.0-incubating</version>
+    <version>0.5.0</version>
 </dependency>
 ```
 
@@ -124,7 +124,7 @@ The generalized triples/quads can be accessed as [org.apache.jena.graph.Triple](
 <dependency>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-rdf-rdf4j</artifactId>
-    <version>0.3.0-incubating</version>
+    <version>0.5.0</version>
 </dependency>
 ```
 
@@ -187,7 +187,7 @@ This is primarily intended to support [JSON-LD](http://json-ld.org/) parsing and
 <dependency>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-rdf-jsonld</artifactId>
-    <version>0.3.0-incubating</version>
+    <version>0.5.0</version>
 </dependency>
 ```