Re: [VOTE][RC1] Release Commons Rng 1.0

2016-09-14 Thread Emmanuel Bourg
Hi all,

RNG is moving fast, that's nice. I got a quick look at the API and the
site, here are my comments:

- The main page (Overview) could be enhanced with a description of the
API longer than a single sentence. It could mention the motivations for
the API, the implementations supported, a sample code snippet and a link
to the user guide.

- In the Performance section of the User Guide, I'd suggest grouping the
3 tables into a single one. It might also be interesting to put the
quality results in the same table, so we can see the trade-off between
performance and quality.

- The License section of the user guide could be removed, I guess
everyone knows that Apache projects use the Apache license.

- The internal packages should be hidden from the Javadoc, otherwise
users may be tempted to directly use the classes there. This would imply
copying the documentation of the generators into the RandomSource class.

- Why isn't the UniformRandomProvider interface simply named
RandomProvider? Is there any plan to implement non uniform random
generators in the future? Will they have a different interface?

- UniformRandomProvider mimics the java.util.Random methods which is
nice. Is there any value in also implementing the nextGaussian() method
such that our API is a perfect drop-in replacement for the JDK class?

- For code relying on the java.util.Random type, it might be useful to
provide an adapter turning an UniformRandomProvider into a
java.util.Random implementation (Hipparchus has one).

- The choice of an enum for the factory class RandomSource is a bit
unusual. It is probably ok for simple RNG with a simple seed, but with
more complex implementations I find it less intuitive to use.
For example the create(RandomSource, Object Object...) method has this
snippet in its documentation:

  RandomSource.create(RandomSource.TWO_CMRES_SELECT, 26219, 6, 9)

When a user types this in its IDE, there is no type information nor
contextual documentation for the parameters expected. The user has to
know the type of the seed and the meaning of the parameters expected,
the IDE won't be able to help here (with CTRL+P and CTRL+Q in IntelliJ).

This design induces some complexity, the loss of the seed type leads to
the seed conversion mechanism (most of the util package if I understand
well).

I'd feel more comfortable with a more classic factory design, something
like:

  RandomSource.createTwoCmres()
  RandomSource.createTwoCmres(Integer seed)
  RandomSource.createTwoCmres(Integer seed, int i, int j)

or a shorter form like:

  RNG.newTwoCmres()
  RNG.newTwoCmres(int seed)
  RNG.newTwoCmres(Integer seed, int i, int j)

That will add more methods to the factory, but it'll be much more usable
in my opinion.

- I'm not convinced by the need for the convenience static methods
RandomSource.createInt/Long. If the user doesn't want to specify the
seed, he could simply use the seed-less create method. And if the random
generator requires extra parameters, he could use a null value for the
seed as a way to mean "generate one for me please":

  RandomSource.create(RandomSource.TWO_CMRES_SELECT, null, 6, 9)

- RandomSource.saveState/restoreState allows one to convert a random
generator to/from a byte array. This looks a lot like Java
serialization. Maybe the implementations supporting this feature could
be marked as Serializable, thus it would be possible to call
RandomSource.saveState only if the instance is Serializable instead of
catching the UnsupportedOperationException thrown when the feature isn't
supported.

- Why is the byte[] state encapsulated into the RandomSource.State
class? Why not using a byte array directly?


So far I'm +1 for a beta release aimed at getting more feedback on the
API, but I'm -1 for releasing the current code as 1.0.

Emmanuel Bourg


Le 11/09/2016 à 16:55, Gilles a écrit :
> Hi.
> 
> This is a [VOTE] for releasing Apache Commons Rng 1.0 (from RC1).
> 
> Tag name:
>   RNG_1_0_RC1 (signature can be checked from git using 'git tag -v')
> 
> Tag URL:
>  
> https://git-wip-us.apache.org/repos/asf?p=commons-rng.git;a=commit;h=f8d23082607b9f2c7be7f489eb09627722440ee5
> 
> 
> Commit ID the tag points at:
>   f8d23082607b9f2c7be7f489eb09627722440ee5
> 
> Site:
>   http://home.apache.org/~erans/commons-rng-1.0-RC1-site
> 
> Distribution files:
>   https://dist.apache.org/repos/dist/dev/commons/rng/
> 
> Distribution files hashes (SHA1):
>   a221e862c8ff970a9ca3e7fbd86c3200d1f8780a commons-rng-1.0-bin.tar.gz
>   689b2bfbdb1856d4f47851d75762aab42057805a commons-rng-1.0-bin.zip
>   40b7b1639eedf91b5fad5d38e6ebec01e659048f commons-rng-1.0-src.tar.gz
>   6296dbabde10169d6365bda99f2af6dcc191e515 commons-rng-1.0-src.zip
> 
> KEYS file to check signatures:
>   http://www.apache.org/dist/commons/KEYS
> 
> Maven artifacts:
>  
> https://repository.apache.org/content/repositories/orgapachecommons-1199/org/apache/commons/commons-rng/1.0/
> 
> 
> [ ] +1 Release it.
> [ ] +0 Go ahead; I don't care.
> [ ] -0 There are a 

Re: [VOTE][RC1] Release Commons Rng 1.0

2016-09-11 Thread Gilles

On Sun, 11 Sep 2016 11:21:20 -0700, Gary Gregory wrote:

Same comment for the Javadoc title IMO "Rng" -> "RNG"

Kudos on getting high coverage as reported by JaCoCo.


Thanks!

Tools like this
  https://coveralls.io/github/apache/commons-rng
create addiction. ;-)

Gilles



Gary

On Sun, Sep 11, 2016 at 11:19 AM, Gary Gregory 


wrote:


The site should be as it would be for 1.0: https://home.apache.org/~
erans/commons-rng-1.0-RC1-site/index.html

*"There isn't any release yet.*

Work is currently performed actively towards release 1.0: See our
issue-tracking system. 
"


That's not right.

In the docs the component name should be "Apache Commons RNG":

- Use "Apache" in front of Commons

- Use "RNG" in caps since it is an acronym.

Keeping the "rng" in the logo is fine, it's just a style choice.

So:

"Commons Rng: Random numbers generators

Commons Rng provides implementations of pseudo-random numbers 
generators.

Download Rng"
becomes:
"Apache Commons RNG: Random Numbers Generators

Commons Rng provides implementations of pseudo-random numbers 
generators.

Download Apache Commons RNG"

2c,
Gary

On Sun, Sep 11, 2016 at 7:55 AM, Gilles 


wrote:


Hi.

This is a [VOTE] for releasing Apache Commons Rng 1.0 (from RC1).

Tag name:
  RNG_1_0_RC1 (signature can be checked from git using 'git tag 
-v')


Tag URL:
  https://git-wip-us.apache.org/repos/asf?p=commons-rng.git;a=
commit;h=f8d23082607b9f2c7be7f489eb09627722440ee5

Commit ID the tag points at:
  f8d23082607b9f2c7be7f489eb09627722440ee5

Site:
  http://home.apache.org/~erans/commons-rng-1.0-RC1-site

Distribution files:
  https://dist.apache.org/repos/dist/dev/commons/rng/

Distribution files hashes (SHA1):
  a221e862c8ff970a9ca3e7fbd86c3200d1f8780a 
commons-rng-1.0-bin.tar.gz

  689b2bfbdb1856d4f47851d75762aab42057805a commons-rng-1.0-bin.zip
  40b7b1639eedf91b5fad5d38e6ebec01e659048f 
commons-rng-1.0-src.tar.gz

  6296dbabde10169d6365bda99f2af6dcc191e515 commons-rng-1.0-src.zip

KEYS file to check signatures:
  http://www.apache.org/dist/commons/KEYS

Maven artifacts:
  https://repository.apache.org/content/repositories/orgapache
commons-1199/org/apache/commons/commons-rng/1.0/

[ ] +1 Release it.
[ ] +0 Go ahead; I don't care.
[ ] -0 There are a few minor glitches: ...
[ ] -1 No, do not release it because ...

This vote will close in 72 hours, at 2016-09-14T15:10:00Z (this is 
UTC

time).
--

Thanks,
Gilles



-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org





--
E-Mail: garydgreg...@gmail.com | ggreg...@apache.org
Java Persistence with Hibernate, Second Edition

JUnit in Action, Second Edition 
Spring Batch in Action 
Blog: http://garygregory.wordpress.com
Home: http://garygregory.com/
Tweet! http://twitter.com/GaryGregory




-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [VOTE][RC1] Release Commons Rng 1.0

2016-09-11 Thread Gilles

On Sun, 11 Sep 2016 11:19:18 -0700, Gary Gregory wrote:

The site should be as it would be for 1.0:
https://home.apache.org/~erans/commons-rng-1.0-RC1-site/index.html

*"There isn't any release yet.*

Work is currently performed actively towards release 1.0: See our
issue-tracking system. "

That's not right.


Yes; sorry for that.

IIRC, site tuning was not a blocker (not really part of the release).
I'll fix that page before updating the site (which I did several time,
even though there was no release yet).

Is that OK?


In the docs the component name should be "Apache Commons RNG":


By "docs", do you mean the "Overview" page of the web site?



- Use "Apache" in front of Commons

- Use "RNG" in caps since it is an acronym.


I really intended "Rng", as in:
  Random, next generation

Is there a Commons policy against that spelling?

[Though I agree that, for uniformity, it should be "RNG".]


Keeping the "rng" in the logo is fine, it's just a style choice.

So:

"Commons Rng: Random numbers generators

Commons Rng provides implementations of pseudo-random numbers 
generators.

Download Rng"
becomes:
"Apache Commons RNG: Random Numbers Generators

Commons Rng provides implementations of pseudo-random numbers 
generators.

Download Apache Commons RNG"


I'll fix the web site's "Overview" page.
Do I have to upload the corrected version to "home.apache.org", or
do you agree that it can be done on the live site?


Regards,
Gilles




2c,
Gary

On Sun, Sep 11, 2016 at 7:55 AM, Gilles 


wrote:


Hi.

This is a [VOTE] for releasing Apache Commons Rng 1.0 (from RC1).

Tag name:
  RNG_1_0_RC1 (signature can be checked from git using 'git tag -v')

Tag URL:
  https://git-wip-us.apache.org/repos/asf?p=commons-rng.git;a=
commit;h=f8d23082607b9f2c7be7f489eb09627722440ee5

Commit ID the tag points at:
  f8d23082607b9f2c7be7f489eb09627722440ee5

Site:
  http://home.apache.org/~erans/commons-rng-1.0-RC1-site

Distribution files:
  https://dist.apache.org/repos/dist/dev/commons/rng/

Distribution files hashes (SHA1):
  a221e862c8ff970a9ca3e7fbd86c3200d1f8780a 
commons-rng-1.0-bin.tar.gz

  689b2bfbdb1856d4f47851d75762aab42057805a commons-rng-1.0-bin.zip
  40b7b1639eedf91b5fad5d38e6ebec01e659048f 
commons-rng-1.0-src.tar.gz

  6296dbabde10169d6365bda99f2af6dcc191e515 commons-rng-1.0-src.zip

KEYS file to check signatures:
  http://www.apache.org/dist/commons/KEYS

Maven artifacts:
  https://repository.apache.org/content/repositories/orgapache
commons-1199/org/apache/commons/commons-rng/1.0/

[ ] +1 Release it.
[ ] +0 Go ahead; I don't care.
[ ] -0 There are a few minor glitches: ...
[ ] -1 No, do not release it because ...

This vote will close in 72 hours, at 2016-09-14T15:10:00Z (this is 
UTC

time).
--

Thanks,
Gilles




-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [VOTE][RC1] Release Commons Rng 1.0

2016-09-11 Thread Gary Gregory
Same comment for the Javadoc title IMO "Rng" -> "RNG"

Kudos on getting high coverage as reported by JaCoCo.

Gary

On Sun, Sep 11, 2016 at 11:19 AM, Gary Gregory 
wrote:

> The site should be as it would be for 1.0: https://home.apache.org/~
> erans/commons-rng-1.0-RC1-site/index.html
>
> *"There isn't any release yet.*
>
> Work is currently performed actively towards release 1.0: See our
> issue-tracking system. "
>
> That's not right.
>
> In the docs the component name should be "Apache Commons RNG":
>
> - Use "Apache" in front of Commons
>
> - Use "RNG" in caps since it is an acronym.
>
> Keeping the "rng" in the logo is fine, it's just a style choice.
>
> So:
>
> "Commons Rng: Random numbers generators
>
> Commons Rng provides implementations of pseudo-random numbers generators.
> Download Rng"
> becomes:
> "Apache Commons RNG: Random Numbers Generators
>
> Commons Rng provides implementations of pseudo-random numbers generators.
> Download Apache Commons RNG"
>
> 2c,
> Gary
>
> On Sun, Sep 11, 2016 at 7:55 AM, Gilles 
> wrote:
>
>> Hi.
>>
>> This is a [VOTE] for releasing Apache Commons Rng 1.0 (from RC1).
>>
>> Tag name:
>>   RNG_1_0_RC1 (signature can be checked from git using 'git tag -v')
>>
>> Tag URL:
>>   https://git-wip-us.apache.org/repos/asf?p=commons-rng.git;a=
>> commit;h=f8d23082607b9f2c7be7f489eb09627722440ee5
>>
>> Commit ID the tag points at:
>>   f8d23082607b9f2c7be7f489eb09627722440ee5
>>
>> Site:
>>   http://home.apache.org/~erans/commons-rng-1.0-RC1-site
>>
>> Distribution files:
>>   https://dist.apache.org/repos/dist/dev/commons/rng/
>>
>> Distribution files hashes (SHA1):
>>   a221e862c8ff970a9ca3e7fbd86c3200d1f8780a commons-rng-1.0-bin.tar.gz
>>   689b2bfbdb1856d4f47851d75762aab42057805a commons-rng-1.0-bin.zip
>>   40b7b1639eedf91b5fad5d38e6ebec01e659048f commons-rng-1.0-src.tar.gz
>>   6296dbabde10169d6365bda99f2af6dcc191e515 commons-rng-1.0-src.zip
>>
>> KEYS file to check signatures:
>>   http://www.apache.org/dist/commons/KEYS
>>
>> Maven artifacts:
>>   https://repository.apache.org/content/repositories/orgapache
>> commons-1199/org/apache/commons/commons-rng/1.0/
>>
>> [ ] +1 Release it.
>> [ ] +0 Go ahead; I don't care.
>> [ ] -0 There are a few minor glitches: ...
>> [ ] -1 No, do not release it because ...
>>
>> This vote will close in 72 hours, at 2016-09-14T15:10:00Z (this is UTC
>> time).
>> --
>>
>> Thanks,
>> Gilles
>>
>>
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
>> For additional commands, e-mail: dev-h...@commons.apache.org
>>
>>
>
>
> --
> E-Mail: garydgreg...@gmail.com | ggreg...@apache.org
> Java Persistence with Hibernate, Second Edition
> 
> JUnit in Action, Second Edition 
> Spring Batch in Action 
> Blog: http://garygregory.wordpress.com
> Home: http://garygregory.com/
> Tweet! http://twitter.com/GaryGregory
>



-- 
E-Mail: garydgreg...@gmail.com | ggreg...@apache.org
Java Persistence with Hibernate, Second Edition

JUnit in Action, Second Edition 
Spring Batch in Action 
Blog: http://garygregory.wordpress.com
Home: http://garygregory.com/
Tweet! http://twitter.com/GaryGregory


Re: [VOTE][RC1] Release Commons Rng 1.0

2016-09-11 Thread Gary Gregory
The site should be as it would be for 1.0:
https://home.apache.org/~erans/commons-rng-1.0-RC1-site/index.html

*"There isn't any release yet.*

Work is currently performed actively towards release 1.0: See our
issue-tracking system. "

That's not right.

In the docs the component name should be "Apache Commons RNG":

- Use "Apache" in front of Commons

- Use "RNG" in caps since it is an acronym.

Keeping the "rng" in the logo is fine, it's just a style choice.

So:

"Commons Rng: Random numbers generators

Commons Rng provides implementations of pseudo-random numbers generators.
Download Rng"
becomes:
"Apache Commons RNG: Random Numbers Generators

Commons Rng provides implementations of pseudo-random numbers generators.
Download Apache Commons RNG"

2c,
Gary

On Sun, Sep 11, 2016 at 7:55 AM, Gilles 
wrote:

> Hi.
>
> This is a [VOTE] for releasing Apache Commons Rng 1.0 (from RC1).
>
> Tag name:
>   RNG_1_0_RC1 (signature can be checked from git using 'git tag -v')
>
> Tag URL:
>   https://git-wip-us.apache.org/repos/asf?p=commons-rng.git;a=
> commit;h=f8d23082607b9f2c7be7f489eb09627722440ee5
>
> Commit ID the tag points at:
>   f8d23082607b9f2c7be7f489eb09627722440ee5
>
> Site:
>   http://home.apache.org/~erans/commons-rng-1.0-RC1-site
>
> Distribution files:
>   https://dist.apache.org/repos/dist/dev/commons/rng/
>
> Distribution files hashes (SHA1):
>   a221e862c8ff970a9ca3e7fbd86c3200d1f8780a commons-rng-1.0-bin.tar.gz
>   689b2bfbdb1856d4f47851d75762aab42057805a commons-rng-1.0-bin.zip
>   40b7b1639eedf91b5fad5d38e6ebec01e659048f commons-rng-1.0-src.tar.gz
>   6296dbabde10169d6365bda99f2af6dcc191e515 commons-rng-1.0-src.zip
>
> KEYS file to check signatures:
>   http://www.apache.org/dist/commons/KEYS
>
> Maven artifacts:
>   https://repository.apache.org/content/repositories/orgapache
> commons-1199/org/apache/commons/commons-rng/1.0/
>
> [ ] +1 Release it.
> [ ] +0 Go ahead; I don't care.
> [ ] -0 There are a few minor glitches: ...
> [ ] -1 No, do not release it because ...
>
> This vote will close in 72 hours, at 2016-09-14T15:10:00Z (this is UTC
> time).
> --
>
> Thanks,
> Gilles
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> For additional commands, e-mail: dev-h...@commons.apache.org
>
>


-- 
E-Mail: garydgreg...@gmail.com | ggreg...@apache.org
Java Persistence with Hibernate, Second Edition

JUnit in Action, Second Edition 
Spring Batch in Action 
Blog: http://garygregory.wordpress.com
Home: http://garygregory.com/
Tweet! http://twitter.com/GaryGregory


Re: [VOTE][RC1] Release Commons Rng 1.0

2016-09-11 Thread Oliver Heger
Build works fine with Java 1.6 and 1.8 on Windows 10. Artifacts and site
look good.

+1

Oliver

Am 11.09.2016 um 16:55 schrieb Gilles:
> Hi.
> 
> This is a [VOTE] for releasing Apache Commons Rng 1.0 (from RC1).
> 
> Tag name:
>   RNG_1_0_RC1 (signature can be checked from git using 'git tag -v')
> 
> Tag URL:
>  
> https://git-wip-us.apache.org/repos/asf?p=commons-rng.git;a=commit;h=f8d23082607b9f2c7be7f489eb09627722440ee5
> 
> 
> Commit ID the tag points at:
>   f8d23082607b9f2c7be7f489eb09627722440ee5
> 
> Site:
>   http://home.apache.org/~erans/commons-rng-1.0-RC1-site
> 
> Distribution files:
>   https://dist.apache.org/repos/dist/dev/commons/rng/
> 
> Distribution files hashes (SHA1):
>   a221e862c8ff970a9ca3e7fbd86c3200d1f8780a commons-rng-1.0-bin.tar.gz
>   689b2bfbdb1856d4f47851d75762aab42057805a commons-rng-1.0-bin.zip
>   40b7b1639eedf91b5fad5d38e6ebec01e659048f commons-rng-1.0-src.tar.gz
>   6296dbabde10169d6365bda99f2af6dcc191e515 commons-rng-1.0-src.zip
> 
> KEYS file to check signatures:
>   http://www.apache.org/dist/commons/KEYS
> 
> Maven artifacts:
>  
> https://repository.apache.org/content/repositories/orgapachecommons-1199/org/apache/commons/commons-rng/1.0/
> 
> 
> [ ] +1 Release it.
> [ ] +0 Go ahead; I don't care.
> [ ] -0 There are a few minor glitches: ...
> [ ] -1 No, do not release it because ...
> 
> This vote will close in 72 hours, at 2016-09-14T15:10:00Z (this is UTC
> time).
> --
> 
> Thanks,
> Gilles
> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> For additional commands, e-mail: dev-h...@commons.apache.org
> 

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [VOTE][RC1] Release Commons Rng 1.0

2016-09-11 Thread Artem Barger
+1 from me

Отправлено с iPhone

> 11 сент. 2016 г., в 17:55, Gilles  написал(а):
> 
> Hi.
> 
> This is a [VOTE] for releasing Apache Commons Rng 1.0 (from RC1).
> 
> Tag name:
>  RNG_1_0_RC1 (signature can be checked from git using 'git tag -v')
> 
> Tag URL:
>  
> https://git-wip-us.apache.org/repos/asf?p=commons-rng.git;a=commit;h=f8d23082607b9f2c7be7f489eb09627722440ee5
> 
> Commit ID the tag points at:
>  f8d23082607b9f2c7be7f489eb09627722440ee5
> 
> Site:
>  http://home.apache.org/~erans/commons-rng-1.0-RC1-site
> 
> Distribution files:
>  https://dist.apache.org/repos/dist/dev/commons/rng/
> 
> Distribution files hashes (SHA1):
>  a221e862c8ff970a9ca3e7fbd86c3200d1f8780a commons-rng-1.0-bin.tar.gz
>  689b2bfbdb1856d4f47851d75762aab42057805a commons-rng-1.0-bin.zip
>  40b7b1639eedf91b5fad5d38e6ebec01e659048f commons-rng-1.0-src.tar.gz
>  6296dbabde10169d6365bda99f2af6dcc191e515 commons-rng-1.0-src.zip
> 
> KEYS file to check signatures:
>  http://www.apache.org/dist/commons/KEYS
> 
> Maven artifacts:
>  
> https://repository.apache.org/content/repositories/orgapachecommons-1199/org/apache/commons/commons-rng/1.0/
> 
> [ ] +1 Release it.
> [ ] +0 Go ahead; I don't care.
> [ ] -0 There are a few minor glitches: ...
> [ ] -1 No, do not release it because ...
> 
> This vote will close in 72 hours, at 2016-09-14T15:10:00Z (this is UTC
> time).
> --
> 
> Thanks,
> Gilles
> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> For additional commands, e-mail: dev-h...@commons.apache.org
> 

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [VOTE][RC1] Release Commons Rng 1.0

2016-09-11 Thread Rob Tompkins
+1

> On Sep 11, 2016, at 10:55 AM, Gilles  wrote:
> 
> Hi.
> 
> This is a [VOTE] for releasing Apache Commons Rng 1.0 (from RC1).
> 
> Tag name:
>  RNG_1_0_RC1 (signature can be checked from git using 'git tag -v')
> 
> Tag URL:
>  
> https://git-wip-us.apache.org/repos/asf?p=commons-rng.git;a=commit;h=f8d23082607b9f2c7be7f489eb09627722440ee5
> 
> Commit ID the tag points at:
>  f8d23082607b9f2c7be7f489eb09627722440ee5
> 
> Site:
>  http://home.apache.org/~erans/commons-rng-1.0-RC1-site
> 
> Distribution files:
>  https://dist.apache.org/repos/dist/dev/commons/rng/
> 
> Distribution files hashes (SHA1):
>  a221e862c8ff970a9ca3e7fbd86c3200d1f8780a commons-rng-1.0-bin.tar.gz
>  689b2bfbdb1856d4f47851d75762aab42057805a commons-rng-1.0-bin.zip
>  40b7b1639eedf91b5fad5d38e6ebec01e659048f commons-rng-1.0-src.tar.gz
>  6296dbabde10169d6365bda99f2af6dcc191e515 commons-rng-1.0-src.zip
> 
> KEYS file to check signatures:
>  http://www.apache.org/dist/commons/KEYS
> 
> Maven artifacts:
>  
> https://repository.apache.org/content/repositories/orgapachecommons-1199/org/apache/commons/commons-rng/1.0/
> 
> [ ] +1 Release it.
> [ ] +0 Go ahead; I don't care.
> [ ] -0 There are a few minor glitches: ...
> [ ] -1 No, do not release it because ...
> 
> This vote will close in 72 hours, at 2016-09-14T15:10:00Z (this is UTC
> time).
> --
> 
> Thanks,
> Gilles
> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> For additional commands, e-mail: dev-h...@commons.apache.org
> 


-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org