You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commonsrdf.apache.org by st...@apache.org on 2016/10/30 08:34:51 UTC

incubator-commonsrdf git commit: prepare for 0.3.0

Repository: incubator-commonsrdf
Updated Branches:
  refs/heads/master fafc65172 -> ac145ca13


prepare for 0.3.0


Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/ac145ca1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/ac145ca1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/ac145ca1

Branch: refs/heads/master
Commit: ac145ca1365358a0b1a811e32ce39bab542d1318
Parents: fafc651
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Sun Oct 30 08:34:42 2016 +0000
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Sun Oct 30 08:34:42 2016 +0000

----------------------------------------------------------------------
 README.md                            | 18 ++++++++----
 examples/pom.xml                     | 10 +++----
 src/site/markdown/download.md        | 49 +++++++++++++++++++++++--------
 src/site/markdown/implementations.md |  8 ++---
 src/site/markdown/userguide.md       |  4 +--
 5 files changed, 60 insertions(+), 29 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/ac145ca1/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 15a7723..5a836c7 100644
--- a/README.md
+++ b/README.md
@@ -100,9 +100,13 @@ Building has been tested with [Apache Maven 3.2](http://maven.apache.org/downloa
     [INFO] ------------------------------------------------------------------------
     [INFO] Reactor Summary:
     [INFO] 
-    [INFO] Commons RDF ....................................... SUCCESS [  1.792 s]
-    [INFO] Commons RDF: API .................................. SUCCESS [  2.676 s]
-    [INFO] Commons RDF: Simple impl .......................... SUCCESS [  3.142 s]
+    [INFO] Commons RDF ........................................ SUCCESS [  0.404 s]
+    [INFO] Commons RDF: API ................................... SUCCESS [  0.031 s]
+    [INFO] Commons RDF: Simple Implementation ................. SUCCESS [  0.010 s]
+    [INFO] Commons RDF: Integration: RDF4j .................... SUCCESS [  0.012 s]
+    [INFO] Commons RDF: Integration: Apache Jena .............. SUCCESS [  0.011 s]
+    [INFO] Commons RDF: Integration: JSON-LD Java ............. SUCCESS [  0.009 s]
+    [INFO] Commons RDF: Integration tests ..................... SUCCESS [  0.005 s]
     [INFO] ------------------------------------------------------------------------
     [INFO] BUILD SUCCESS
     [INFO] ------------------------------------------------------------------------
@@ -117,9 +121,13 @@ To then use this build from your project, add to Maven (update `<version>` to ma
     <dependency>
         <groupId>org.apache.commons</groupId>
         <artifactId>commons-rdf-api</artifactId>
-        <version>0.2.0-incubating-SNAPSHOT</version>
+        <version>0.3.0-incubating</version>
     </dependency>
 
+.. and an equivalent `<dependency>` for the 
+[implementation](http://commonsrdf.incubator.apache.org/implementations.html)
+you would like, e.g. `commons-rdf-simple`.
+
 The `<version>` above might not be up to date, 
 see the [downloads](http://commonsrdf.incubator.apache.org/download.html) to
 use the latest stable release published in Maven Central.
@@ -188,7 +196,7 @@ classifier for the commons-rdf-api module, for example (for Maven):
     <dependency>
         <groupId>org.apache.commons</groupId>
         <artifactId>commons-rdf-api</artifactId>
-        <version>0.2.0-incubating-SNAPSHOT</version>
+        <version>0.3.0-incubating</version>
         <classifier>tests</classifier>
         <scope>test</scope>
     </dependency>

http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/ac145ca1/examples/pom.xml
----------------------------------------------------------------------
diff --git a/examples/pom.xml b/examples/pom.xml
index 62eafa0..7fd454f 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -25,10 +25,11 @@
     
     This module should not be built as part of a release.  
     -->
+    <name>Commons RDF: Examples</name>
     
     <groupId>com.example</groupId> <!--  Change to your groupId -->
     <artifactId>commons-rdf-examples</artifactId> <!-- Change to your artifactId -->
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1</version>
 
     <properties>
         <maven.compiler.source>1.8</maven.compiler.source>
@@ -50,13 +51,13 @@
     		<groupId>org.apache.commons</groupId>
     		<artifactId>commons-rdf-api</artifactId>
         <!-- update to latest version -->
-    		<version>0.3.0-incubating-SNAPSHOT</version>
+    		<version>0.3.0-incubating</version>
     	</dependency>
     	<dependency>
     		<groupId>org.apache.commons</groupId>
     		<artifactId>commons-rdf-simple</artifactId>
         <!-- update to latest version -->
-    		<version>0.3.0-incubating-SNAPSHOT</version>
+    		<version>0.3.0-incubating</version>
     	</dependency>
     	<dependency>
     		<groupId>junit</groupId>
@@ -66,7 +67,7 @@
     	</dependency>
     </dependencies>
     <repositories>
-      <!-- Only needed if testing -SNAPSHOT release of commons-rdf -->
+      <!-- Only needed if testing  release of commons-rdf -->
     	<repository>
     		<id>apache.snapshots</id>
     		<name>Apache Snapshot Repository</name>
@@ -76,5 +77,4 @@
     		</releases>
     	</repository>
     </repositories>
-    <name>Commons RDF: Examples</name>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/ac145ca1/src/site/markdown/download.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/download.md b/src/site/markdown/download.md
index 931d2ac..75347c6 100644
--- a/src/site/markdown/download.md
+++ b/src/site/markdown/download.md
@@ -39,15 +39,32 @@ To use Commons RDF with [Maven](https://maven.apache.org/), add to your `pom.xml
   <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-rdf-api</artifactId>
-      <version>0.2.0-incubating</version>
+      <version>0.3.0-incubating</version>
   </dependency>
-  <!-- and optionally: -->
+
+  <!-- and one of the implementations: -->
+
   <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-rdf-simple</artifactId>
-      <version>0.2.0-incubating</version>
-      <optional>true</optional>
+      <version>0.3.0-incubating</version>
   </dependency>
+  <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-rdf-jsonld-java</artifactId>
+      <version>0.3.0-incubating</version>
+  </dependency>
+  <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-rdf-jena</artifactId>
+      <version>0.3.0-incubating</version>
+  </dependency>
+  <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-rdf-rdf4j</artifactId>
+      <version>0.3.0-incubating</version>
+  </dependency>
+
 </dependencies>
 ```
 
@@ -55,7 +72,9 @@ The `<version>` above might not be up to date,
 see the [source code releases](#Source_code) below to find the latest version.
 
 See the [user guide](userguide.html) for documentation of the
-Apache Commons RDF API.  
+Apache Commons RDF API, and the [implementations](implementations.md) for
+details on each of the bindings.
+
 
 ## Source code
 
@@ -65,19 +84,23 @@ For the latest developments
 you may also be interested in the [source code repository](source-repository.html),
 which is also [mirrored to GitHub](http://github.com/apache/incubator-commonsrdf).
 
-### 0.2.0-incubating
+### 0.3.0-incubating
 
-**Apache Commons RDF 0.2.0-incubating** was published on 2016-04-28, and is available for download
+**Apache Commons RDF 0.3.0-incubating** was published on 2016-11-`TOOD`, and is available for download
 from official mirrors of the
-ASF Distribution Directory [incubator/commonsrdf](https://www.apache.org/dyn/closer.lua/incubator/commonsrdf/0.2.0-incubating/):
+ASF Distribution Directory [incubator/commonsrdf](https://www.apache.org/dyn/closer.lua/incubator/commonsrdf/0.3.0-incubating/):
 
-* [apache-commonsrdf-0.2.0-incubating-source-release.zip](https://www.apache.org/dyn/closer.lua/incubator/commonsrdf/0.2.0-incubating/apache-commonsrdf-0.2.0-incubating-source-release.zip)
-  ([asc](https://www.apache.org/dist/incubator/commonsrdf/0.2.0-incubating/apache-commonsrdf-0.2.0-incubating-source-release.zip.asc),
-  [md5](https://www.apache.org/dist/incubator/commonsrdf/0.2.0-incubating/apache-commonsrdf-0.2.0-incubating-source-release.zip.md5),
-  [sha1](https://www.apache.org/dist/incubator/commonsrdf/0.2.0-incubating/apache-commonsrdf-0.2.0-incubating-source-release.zip.sha1))
+* [apache-commons-rdf-0.3.0-incubating-src.zip](https://www.apache.org/dyn/closer.lua/incubator/commonsrdf/0.3.0-incubating/apache-commons-rdf-0.3.0-incubating-src.zip)
+  ([asc](https://www.apache.org/dist/incubator/commonsrdf/0.3.0-incubating/apache-commons-rdf-0.3.0-incubating-src.zip.asc),
+  [md5](https://www.apache.org/dist/incubator/commonsrdf/0.3.0-incubating/apache-commons-rdf-0.3.0-incubating-src.zip.md5),
+  [sha1](https://www.apache.org/dist/incubator/commonsrdf/0.3.0-incubating/apache-commons-rdf-0.3.0-incubating-src.zip.sha1))
+* [apache-commons-rdf-0.3.0-incubating-src.tar.gz](https://www.apache.org/dyn/closer.lua/incubator/commonsrdf/0.3.0-incubating/apache-commons-rdf-0.3.0-incubating-src.zip)
+  ([asc](https://www.apache.org/dist/incubator/commonsrdf/0.3.0-incubating/apache-commons-rdf-0.3.0-incubating-src.tar.gz.asc),
+  [md5](https://www.apache.org/dist/incubator/commonsrdf/0.3.0-incubating/apache-commons-rdf-0.3.0-incubating-src.tar.gz.md5),
+  [sha1](https://www.apache.org/dist/incubator/commonsrdf/0.3.0-incubating/apache-commons-rdf-0.3.0-incubating-src.tar.gz.sha1))
 
 After downloading the files, check the signatures using the following [KEYS](https://www.apache.org/dist/incubator/commonsrdf/KEYS)
-file. The [changelog](https://s.apache.org/0.2.0-incubating)
+file. The [changelog](https://s.apache.org/rdf-0.3.0)
 is available from the [Apache Commons RDF Jira](https://issues.apache.org/jira/browse/COMMONSRDF).
 
 ### Previous Releases

http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/ac145ca1/src/site/markdown/implementations.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/implementations.md b/src/site/markdown/implementations.md
index 51679fd..a64f7c7 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-SNAPSHOT</version>
+    <version>0.3.0-incubating</version>
 </dependency>
 ```
 
@@ -85,7 +85,7 @@ Graph graph = rdfTermFactory.createGraph();
 <dependency>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-rdf-jena</artifactId>
-    <version>0.3.0-incubating-SNAPSHOT</version>
+    <version>0.3.0-incubating</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-SNAPSHOT</version>
+    <version>0.3.0-incubating</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-SNAPSHOT</version>
+    <version>0.3.0-incubating</version>
 </dependency>
 ```
 

http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/ac145ca1/src/site/markdown/userguide.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/userguide.md b/src/site/markdown/userguide.md
index ce9af61..03b44f3 100644
--- a/src/site/markdown/userguide.md
+++ b/src/site/markdown/userguide.md
@@ -89,7 +89,7 @@ add the following dependency to your `pom.xml`:
     <dependency>
         <groupId>org.apache.commons</groupId>
         <artifactId>commons-rdf-api</artifactId>
-        <version>0.2.0-incubating</version>
+        <version>0.3.0-incubating</version>
     </dependency>
 </dependencies>
 ```
@@ -133,7 +133,7 @@ _simple_ implementation, add to your `<dependencies>`:
     <dependency>
         <groupId>org.apache.commons</groupId>
         <artifactId>commons-rdf-simple</artifactId>
-        <version>0.2.0-incubating</version>
+        <version>0.3.0-incubating</version>
     </dependency>
 ```