Author: erans
Date: Mon Dec 12 15:45:44 2016
New Revision: 17363

Log:
Release Commons RNG v1.0 (from RC6).

Added:
    release/commons/rng/CONTRIBUTING.md
    release/commons/rng/README.md
    release/commons/rng/RELEASE-NOTES.txt   (with props)
    release/commons/rng/binaries/commons-rng-1.0-bin.tar.gz   (with props)
    release/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.asc
    release/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.md5
    release/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.sha1
    release/commons/rng/binaries/commons-rng-1.0-bin.zip   (with props)
    release/commons/rng/binaries/commons-rng-1.0-bin.zip.asc
    release/commons/rng/binaries/commons-rng-1.0-bin.zip.md5
    release/commons/rng/binaries/commons-rng-1.0-bin.zip.sha1
    release/commons/rng/source/commons-rng-1.0-src.tar.gz   (with props)
    release/commons/rng/source/commons-rng-1.0-src.tar.gz.asc
    release/commons/rng/source/commons-rng-1.0-src.tar.gz.md5
    release/commons/rng/source/commons-rng-1.0-src.tar.gz.sha1
    release/commons/rng/source/commons-rng-1.0-src.zip   (with props)
    release/commons/rng/source/commons-rng-1.0-src.zip.asc
    release/commons/rng/source/commons-rng-1.0-src.zip.md5
    release/commons/rng/source/commons-rng-1.0-src.zip.sha1
Modified:
    release/commons/rng/README.html

Added: release/commons/rng/CONTRIBUTING.md
==============================================================================
--- release/commons/rng/CONTRIBUTING.md (added)
+++ release/commons/rng/CONTRIBUTING.md Mon Dec 12 15:45:44 2016
@@ -0,0 +1,102 @@
+<!---
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<!---
+ +======================================================================+
+ |****                                                              ****|
+ |****      THIS FILE IS GENERATED BY THE COMMONS BUILD PLUGIN      ****|
+ |****                    DO NOT EDIT DIRECTLY                      ****|
+ |****                                                              ****|
+ +======================================================================+
+ | TEMPLATE FILE: contributing-md-template.md                           |
+ | commons-build-plugin/trunk/src/main/resources/commons-xdoc-templates |
+ +======================================================================+
+ |                                                                      |
+ | 1) Re-generate using: mvn commons:contributing-md                    |
+ |                                                                      |
+ | 2) Set the following properties in the component's pom:              |
+ |    - commons.jira.id  (required, alphabetic, upper case)             |
+ |                                                                      |
+ | 3) Example Properties                                                |
+ |                                                                      |
+ |  <properties>                                                        |
+ |    <commons.jira.id>RNG</commons.jira.id>                           |
+ |  </properties>                                                       |
+ |                                                                      |
+ +======================================================================+
+--->
+Contributing to Apache Commons RNG
+======================
+
+You have found a bug or you have an idea for a cool new feature? Contributing 
code is a great way to give something back to
+the open source community. Before you dig right into the code there are a few 
guidelines that we need contributors to
+follow so that we can have a chance of keeping on top of things.
+
+Getting Started
+---------------
+
++ Make sure you have a [JIRA account](https://issues.apache.org/jira/).
++ Make sure you have a [GitHub account](https://github.com/signup/free).
++ If you're planning to implement a new feature it makes sense to discuss 
you're changes on the [dev list](https://commons.apache.org/mail-lists.html) 
first. This way you can make sure you're not wasting your time on something 
that isn't considered to be in Apache Commons RNG's scope.
++ Submit a ticket for your issue, assuming one does not already exist.
+  + Clearly describe the issue including steps to reproduce when it is a bug.
+  + Make sure you fill in the earliest version that you know has the issue.
++ Fork the repository on GitHub.
+
+Making Changes
+--------------
+
++ Create a topic branch from where you want to base your work (this is usually 
the develop/trunk branch).
++ Make commits of logical units.
++ Respect the original code style:
+  + Only use spaces for indentation.
+  + Create minimal diffs - disable on save actions like reformat source code 
or organize imports. If you feel the source code should be reformatted create a 
separate PR for this change.
+  + Check for unnecessary whitespace with git diff --check before committing.
++ Topic branch names should directly correspond to the JIRA issues they are 
intended to resolve. For example branch names should look like:
+  + `improvement-RNG-852`
+  + `bug-RNG-1329`
+  + `feature-RNG-621`
++ Make sure your commit messages are in the proper format. Your commit message 
should contain the key of the JIRA issue.
+  + For example, a commit message might look like `RNG-852: Adding 
documentation for development`
++ Make sure you have added the necessary tests for your changes.
++ Run all the tests with `mvn clean verify` to assure nothing else was 
accidentally broken.
+
+Making Trivial Changes
+----------------------
+
+For changes of a trivial nature to comments and documentation, it is not 
always necessary to create a new ticket in JIRA.
+In this case, it is appropriate to start the first line of a commit with 
'(doc)' instead of a ticket number.
+
+Submitting Changes
+------------------
+
++ Sign the [Contributor License Agreement][cla] if you haven't already.
++ Push your changes to a topic branch in your fork of the repository.
++ Submit a pull request to the repository in the apache organization.
++ Update your JIRA ticket and include a link to the pull request in the ticket.
+
+Additional Resources
+--------------------
+
++ [Contributing patches](https://commons.apache.org/patches.html)
++ [Apache Commons RNG JIRA project 
page](https://issues.apache.org/jira/browse/RNG)
++ [Contributor License Agreement][cla]
++ [General GitHub documentation](https://help.github.com/)
++ [GitHub pull request 
documentation](https://help.github.com/send-pull-requests/)
++ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
++ #apachecommons IRC channel on freenode.org
+
+[cla]:https://www.apache.org/licenses/#clas

Modified: release/commons/rng/README.html
==============================================================================
--- release/commons/rng/README.html (original)
+++ release/commons/rng/README.html Mon Dec 12 15:45:44 2016
@@ -1,7 +1,7 @@
-<h1>Commons Rng 1.0</h1>
+<h1>Apache Commons RNG 1.0</h1>
 
 <p>
-  This is version 1.0 of the Commons Rng library.
+  This is version 1.0 of the Apache Commons RNG library.
   It is available in both binary and source distributions.
 </p>
 
@@ -17,7 +17,7 @@
 <p>The changes in this release are detailed in the release notes.</p>
 
 <p>
-  Thank you for using <a href="http://commons.apache.org/rng/";>Commons Rng</a>
+  Thank you for using <a href="http://commons.apache.org/rng/";>Apache Commons 
RNG</a>
   from the <a href="http://commons.apache.org/";>Apache Commons Project</a>.
 </p>
 
@@ -51,21 +51,21 @@
 
 <pre>
 $ pgpk -a KEYS
-$ pgpv commons-rng.1.0.tar.gz.asc
+$ pgpv commons-rng-1.0-bin.tar.gz.asc
 </pre>
 
   or
 
 <pre>
 $ pgp -ka KEYS
-$ pgp commons-rng.1.0.tar.gz.asc
+$ pgp commons-rng-1.0-bin.tar.gz.asc
 </pre>
 
   or
 
 <pre>
 $ gpg --import KEYS
-$ gpg --verify commons-rng.1.0.tar.gz.asc
+$ gpg --verify commons-rng-1.0-bin.tar.gz.asc
 </pre>
 
 </p>

Added: release/commons/rng/README.md
==============================================================================
--- release/commons/rng/README.md (added)
+++ release/commons/rng/README.md Mon Dec 12 15:45:44 2016
@@ -0,0 +1,103 @@
+<!---
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<!---
+ +======================================================================+
+ |****                                                              ****|
+ |****      THIS FILE IS GENERATED BY THE COMMONS BUILD PLUGIN      ****|
+ |****                    DO NOT EDIT DIRECTLY                      ****|
+ |****                                                              ****|
+ +======================================================================+
+ | TEMPLATE FILE: readme-md-template.md                                 |
+ | commons-build-plugin/trunk/src/main/resources/commons-xdoc-templates |
+ +======================================================================+
+ |                                                                      |
+ | 1) Re-generate using: mvn commons:readme-md                          |
+ |                                                                      |
+ | 2) Set the following properties in the component's pom:              |
+ |    - commons.componentid (required, alphabetic, lower case)          |
+ |    - commons.release.version (required)                              |
+ |                                                                      |
+ | 3) Example Properties                                                |
+ |                                                                      |
+ |  <properties>                                                        |
+ |    <commons.componentid>rng</commons.componentid>                    |
+ |    <commons.release.version>1.0</commons.release.version>            |
+ |  </properties>                                                       |
+ |                                                                      |
+ +======================================================================+
+--->
+Apache Commons RNG
+===================
+
+[![Build 
Status](https://travis-ci.org/apache/commons-rng.svg?branch=master)](https://travis-ci.org/apache/commons-rng)
+[![Coverage 
Status](https://coveralls.io/repos/github/apache/commons-rng/badge.svg?branch=master)](https://coveralls.io/github/apache/commons-rng?branch=master)
+[![Maven 
Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-rng/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-rng/)
+[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
+
+The Apache Commons RNG project provides Java implementations of pseudo-random 
numbers generators.
+
+Documentation
+-------------
+
+More information can be found on the 
[homepage](https://commons.apache.org/proper/commons-rng).
+The [JavaDoc](https://commons.apache.org/proper/commons-rng/apidocs) can be 
browsed.
+Questions related to the usage of Apache Commons RNG should be posted to the 
[user mailing list][ml].
+
+Where can I get the latest release?
+-----------------------------------
+You can download source and binaries from our [download 
page](https://commons.apache.org/proper/commons-rng/download_rng.cgi).
+
+Alternatively you can pull it from the central Maven repositories:
+
+```xml
+<dependency>
+  <groupId>org.apache.commons</groupId>
+  <artifactId>commons-rng</artifactId>
+  <version>1.0</version>
+</dependency>
+```
+
+Contributing
+------------
+
+We accept PRs via github. The [developer mailing list][ml] is the main channel 
of communication for contributors.
+There are some guidelines which will make applying PRs easier for us:
++ No tabs! Please use spaces for indentation.
++ Respect the code style.
++ Create minimal diffs - disable on save actions like reformat source code or 
organize imports. If you feel the source code should be reformatted create a 
separate PR for this change.
++ Provide JUnit tests for your changes and make sure your changes don't break 
any existing tests by running ```mvn clean test```.
+
+If you plan to contribute on a regular basis, please consider filing a 
[contributor license agreement](https://www.apache.org/licenses/#clas).
+You can learn more about contributing via GitHub in our [contribution 
guidelines](CONTRIBUTING.md).
+
+License
+-------
+Code is under the [Apache Licence 
v2](https://www.apache.org/licenses/LICENSE-2.0.txt).
+
+Donations
+---------
+You like Apache Commons RNG? Then [donate back to the 
ASF](https://www.apache.org/foundation/contributing.html) to support the 
development.
+
+Additional Resources
+--------------------
+
++ [Apache Commons Homepage](https://commons.apache.org/)
++ [Apache Bugtracker (JIRA)](https://issues.apache.org/jira/)
++ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
++ #apachecommons IRC channel on freenode.org
+
+[ml]:https://commons.apache.org/mail-lists.html

Added: release/commons/rng/RELEASE-NOTES.txt
==============================================================================
--- release/commons/rng/RELEASE-NOTES.txt (added)
+++ release/commons/rng/RELEASE-NOTES.txt Mon Dec 12 15:45:44 2016
@@ -0,0 +1,24 @@
+
+              Apache Commons RNG 1.0 RELEASE NOTES
+
+The Apache Commons RNG team is pleased to announce the release of Apache 
Commons RNG 1.0
+
+The Apache Commons RNG project provides pure-Java implementation of 
pseudo-random generators.
+
+This is the first release of Apache Commons RNG.
+Apache Commons RNG 1.0 contains the following modules:
+ commons-rng-client-api (requires Java 6)
+ commons-rng-core (requires Java 6)
+ commons-rng-simple (requires Java 6)
+ commons-rng-sampling (requires Java 6)
+ commons-rng-jmh (requires Java 6)
+ commons-rng-examples (requires Java 7)
+
+No changes defined in this version.
+
+For complete information on Apache Commons RNG, including instructions on how 
to submit bug reports,
+patches, or suggestions for improvement, see the Apache Commons RNG website:
+
+http://commons.apache.org/proper/commons-rng/
+
+

Propchange: release/commons/rng/RELEASE-NOTES.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: release/commons/rng/binaries/commons-rng-1.0-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: release/commons/rng/binaries/commons-rng-1.0-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: release/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.asc
==============================================================================
--- release/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.asc (added)
+++ release/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.asc Mon Dec 12 
15:45:44 2016
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIcBAABCAAGBQJYRz47AAoJEHA0EwEeItW4x8AP/RO9gGsnYnGR13dUTRgosQ83
+WGuL5fNdO+LZj+rH1W0DrDXyey/aBVBlGlXv+IaOGzkEeknicEPg5e9DKZKoQh+2
+2YQbdtCG5HRqefmXYapdO4tV8MxLC+B8+M0FjRJSZvVu97Ejhu5T2OR+LDiBRQC5
+YFhJ6OwFKeUJOnjxUrSxH7fcWiHHKFgeM3a7sh4J4onPeuI2x/MzUk/LLyDA/72P
+U4lfBSCNGGkyOhZ0bVD2RsSJTcO7fJhsSXFJL3KBUsWSsLt4AwM+rzfaoBI0vsjj
+m0SeWWxcL5R4vBpOnmwkIHH7o8xvBv7yA34DmkpDIEPcLhjZ8xAymE/iL/xZ0GgA
+JXOn9UnH5c1xCVKc9IEwDQJbC/Pl8GD1vU0TvERqPunrmXIYlhtNR9ZHl+N4Pr/P
+sTip8aJUW67uFgu5C0TmVomDIwYQ0OA2DJTNFzDbRKPchpdGS+YuJQeeCHS2090K
+elTIroec8+DIPJW7BHiv67oXIF6Z8nOizbBNP1QsuBWMly6V+5r+QpkPouvvRt5O
+vMignFz1beN89pZuXLmsKezRyYJu1KhQk74J+PL7h2SwwCXFte7ubllT65Nr9HpD
+K+QMduIetNx25eoULcrJSmciZZfRNNwqIT1/O8gQRVGIaRLX074I8jwo2Swa7n89
+elA6hQ3PJfNLQFwZmhB0
+=ZYgB
+-----END PGP SIGNATURE-----

Added: release/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.md5
==============================================================================
--- release/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.md5 (added)
+++ release/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.md5 Mon Dec 12 
15:45:44 2016
@@ -0,0 +1 @@
+cf1ae3138670b8b3f1258ab9b9ee78dd
\ No newline at end of file

Added: release/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.sha1
==============================================================================
--- release/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.sha1 (added)
+++ release/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.sha1 Mon Dec 12 
15:45:44 2016
@@ -0,0 +1 @@
+c5e70a523160ed848194eeba0efa2b14d23c7a61
\ No newline at end of file

Added: release/commons/rng/binaries/commons-rng-1.0-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: release/commons/rng/binaries/commons-rng-1.0-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/commons/rng/binaries/commons-rng-1.0-bin.zip.asc
==============================================================================
--- release/commons/rng/binaries/commons-rng-1.0-bin.zip.asc (added)
+++ release/commons/rng/binaries/commons-rng-1.0-bin.zip.asc Mon Dec 12 
15:45:44 2016
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIcBAABCAAGBQJYRz48AAoJEHA0EwEeItW4JgMQAIXhWoMlGK9Y5bPtHPNz+D+t
+jIZRRczjnTolDkJ99Yh6b29rVBKAh5iOaI1fXhBJtyd6nIkjxLmMitUdBe8uVxne
+TeirSmnvTO5aE8/HeGT+Vt63IXcdg+vERita2QdBPQ2X8MXteXnCZtGvzuhZQTiq
+O62PdfWt3FtstUUHbZbF+XLnaLyxxslUlUkoO8YoW9JbX5IPE/rghx7FuMogdoY1
+p2RevwLTlX6YWtjvJMwfuZaROk9Rb6NCOkmb6Q1/CqjHTJXvKxwGsk9nJwJj+GgM
+PeXbHZMK416eu0F3o3W/WqJk5Jhr2o51zIO4UXdXE8HvZlGoBqlSCZ/UA7iVReg2
+TUf0RHS7fvdjp6Zl0n5ZqDMsAKEDAEgD0idLcNdzMpWzWUxIWlCnol+5SKGutGIA
+6nNaADE3rTTtt0J4kVh5aJO4pNKgLuwDNX3MaJf80sRDdsExSRydd5QiNpD7RbzW
+Eks3BI/rd9UClpZN5daRSpQ46JCZU9iqbIMysd8gfNm+vN1MOsI/I7JPzW7losfw
+4YINqZHwbxPfAbb6h++2s3XCkadbLN7weyzUoKLt6/HPzb3epe9HhZjwy9nLq3Wi
+ri4yMjufT6PrGzKYLwGRD38oReMbZbZ8Q9c//hKDj8cUHjsJb2SJJXwDDirEDVo+
++0MZcHbcZV+OIiLUi25m
+=GQFF
+-----END PGP SIGNATURE-----

Added: release/commons/rng/binaries/commons-rng-1.0-bin.zip.md5
==============================================================================
--- release/commons/rng/binaries/commons-rng-1.0-bin.zip.md5 (added)
+++ release/commons/rng/binaries/commons-rng-1.0-bin.zip.md5 Mon Dec 12 
15:45:44 2016
@@ -0,0 +1 @@
+c578bbbe8d776bd3d989a56daf60cc80
\ No newline at end of file

Added: release/commons/rng/binaries/commons-rng-1.0-bin.zip.sha1
==============================================================================
--- release/commons/rng/binaries/commons-rng-1.0-bin.zip.sha1 (added)
+++ release/commons/rng/binaries/commons-rng-1.0-bin.zip.sha1 Mon Dec 12 
15:45:44 2016
@@ -0,0 +1 @@
+66d7701afc90aafa4c4b6e033b8df6cd84365161
\ No newline at end of file

Added: release/commons/rng/source/commons-rng-1.0-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: release/commons/rng/source/commons-rng-1.0-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: release/commons/rng/source/commons-rng-1.0-src.tar.gz.asc
==============================================================================
--- release/commons/rng/source/commons-rng-1.0-src.tar.gz.asc (added)
+++ release/commons/rng/source/commons-rng-1.0-src.tar.gz.asc Mon Dec 12 
15:45:44 2016
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIcBAABCAAGBQJYRz31AAoJEHA0EwEeItW4cwUQAJwEViOjwYJVcHs9EcyXdHR3
+kYDY+h2PFk94yfbDwdEJAeW8uf3ARyi71OL6ZtbFuozho0VwjkMXVWdu0DPvRw1x
+t/Xp0ZK4m4ybtUMsL+jg64bX0UJa4pwfxVsZ6AopjvjoItp/GNBUk0GXdOMoUzbw
+kzHK/arYLc09T5bZRBVQN4DGPW2iSaJwdlkuB6X4rIeLyFJNvgS9KfbzqjPiZrxG
+FpOEcj+tYl0mTW6gmkS7APIMP0VkOp3CXrKXhbxVbK7llKBVP79xLJlod84OZOni
+j9kyZqHY7eRIHXF+j8RCvjor+4wcDUQcxSj/LdkJaQBvcmqaawlMbq7GU74Sc2gm
+gmvXHNNcTticSFAowEKwF3lkmgghLcebDqhDc3bWbE+rV9zMcFs6QUnbfrllMsT+
+wY2RNqLq8v4ByioHcjp08LZDLOcZNUVwDM9fKxgAyRD4NttPaIwUHOc+67bekEDt
+6BUE3xYIqRt4VT4MDozycp4f+N6CHXF4YyaId/VvsG22pnyGc9f4ZPU723FZqAAZ
+M+cPwHi4TbSGK1yk1jOULAZ2syVerFOYxc7QEY1EwqsiEiWad+w6LBtpeJOwb2Fb
+8wfmKuq3PFLP8OjjWlPpnv+k4lyNxpf8AjjCVRsRkX9IL1Md/Ur8cVRVZze+FcU8
+6ILofcLK1x0cQHEafk65
+=1HFf
+-----END PGP SIGNATURE-----

Added: release/commons/rng/source/commons-rng-1.0-src.tar.gz.md5
==============================================================================
--- release/commons/rng/source/commons-rng-1.0-src.tar.gz.md5 (added)
+++ release/commons/rng/source/commons-rng-1.0-src.tar.gz.md5 Mon Dec 12 
15:45:44 2016
@@ -0,0 +1 @@
+49a2c540f3e5894fe75e840effd42683
\ No newline at end of file

Added: release/commons/rng/source/commons-rng-1.0-src.tar.gz.sha1
==============================================================================
--- release/commons/rng/source/commons-rng-1.0-src.tar.gz.sha1 (added)
+++ release/commons/rng/source/commons-rng-1.0-src.tar.gz.sha1 Mon Dec 12 
15:45:44 2016
@@ -0,0 +1 @@
+ef56543c8882a0e4771de83ecf8b3be190f122cf
\ No newline at end of file

Added: release/commons/rng/source/commons-rng-1.0-src.zip
==============================================================================
Binary file - no diff available.

Propchange: release/commons/rng/source/commons-rng-1.0-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/commons/rng/source/commons-rng-1.0-src.zip.asc
==============================================================================
--- release/commons/rng/source/commons-rng-1.0-src.zip.asc (added)
+++ release/commons/rng/source/commons-rng-1.0-src.zip.asc Mon Dec 12 15:45:44 
2016
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIcBAABCAAGBQJYRz4BAAoJEHA0EwEeItW4/IkQAI+kQA2QHACnUbCMxCl7/gpA
+u9tbRGO+Z6tTSTHPGbYFEbaItS2btW2hnOjgL97DthxFUy7mnpScpNDOJcBIYWFP
+RLTMEvefswFwK9cqPeSTr84O8lQBrvhg1qOvflWEMb1IfWFIzY+4Zd1EeKaYro65
+I41hl/MGWM0YqI9goYGFUFm3tN1LKP7HSHNRLWEbMe3gh6pwCE+9HnEe+c+Mtqhk
+nYB9WcOOfMlAJcmdd8Qg9SoKHNWcMlJT32OPPiGA8WFq3lVi/oVu/f6Qz82CTvnE
+dvbuqKdefy8zPy+fV3yW2kfuZILux/04d0zagcx3bdm1PLp/VtZ5WEukz/znO+O6
+YQQdDQq2qrR56WEm8gG9BHst+TKyeaovRyKeXw/FKe0RKmDhuJZpRj+DX8lR8q/J
+dg8haXApVV0p7volfdhtrHYpUZB2/RgHlxc6enhw5aUaaRUpNg+N8AQTJWNO1nyu
+2ECo1Ix3RQKdXld+qIT6hj7qPgDl4KXPRte7cW3sguNuIgiSqEuae5x7gWUQKnN/
+adhIrZQRhEVbu0q/U39CJ2Q++KO4ph42pgTooNaEfzAnv3auK1X1nlaQ64Jg1wrV
+GTYL4+pzQ2Ik0nYNXECsbHxOe2/zw8ESulxSDhayIIdcY1I90sdAfjOqHGstgUsg
++c59bRBJxa8X+iGHhTmT
+=DhL1
+-----END PGP SIGNATURE-----

Added: release/commons/rng/source/commons-rng-1.0-src.zip.md5
==============================================================================
--- release/commons/rng/source/commons-rng-1.0-src.zip.md5 (added)
+++ release/commons/rng/source/commons-rng-1.0-src.zip.md5 Mon Dec 12 15:45:44 
2016
@@ -0,0 +1 @@
+9fad3917bda89ae9e900f85202b87469
\ No newline at end of file

Added: release/commons/rng/source/commons-rng-1.0-src.zip.sha1
==============================================================================
--- release/commons/rng/source/commons-rng-1.0-src.zip.sha1 (added)
+++ release/commons/rng/source/commons-rng-1.0-src.zip.sha1 Mon Dec 12 15:45:44 
2016
@@ -0,0 +1 @@
+3dc56b0793d8bbd703a4efa68547eb58f6fb5b35
\ No newline at end of file


Reply via email to