[VOTE] Release Apache Commons Pool 2.10.0 based on RC1

2021-05-28 Thread Gary Gregory
We have added two enhancements since Apache Commons Pool 2.9.0 was released, so I would like to release Apache Commons Pool 2.10.0. Apache Commons Pool 2.10.0 RC1 is available for review here: https://dist.apache.org/repos/dist/dev/commons/pool/2.10.0-RC1 (svn revision 47956) The Git tag

Re: [Math][Request for review] MATH-1586

2021-05-28 Thread Gilles Sadowski
Le ven. 28 mai 2021 à 19:32, Gilles Sadowski a écrit : > > Le jeu. 27 mai 2021 à 18:06, Samy Badjoudj a écrit : > > > > Hi, > > > > Following up on modularization of apache commons maths. > > > > https://issues.apache.org/jira/browse/MATH-1586 with > >

Re: [Math][Request for review] MATH-1586

2021-05-28 Thread Gilles Sadowski
Le jeu. 27 mai 2021 à 18:06, Samy Badjoudj a écrit : > > Hi, > > Following up on modularization of apache commons maths. > > https://issues.apache.org/jira/browse/MATH-1586 with > https://github.com/apache/commons-math/pull/182. Thanks. Merged into "modularized_master" branch. > > I moved the

[Text] Re: Roman number conversion to Integer

2021-05-28 Thread Gilles Sadowski
IMO it is a [Text] feature (hence the prefix added to the "Subject: " line). Regards, Gilles Le ven. 28 mai 2021 à 08:21, Miguel Munoz a écrit : > > Here's one take on the problem: > /** > * Created by IntelliJ IDEA. > * Date: 2/4/21 > * Time: 1:36 AM > * > * @author Miguel Mu\u00f1oz >

Re: [Math] FastMath missing methods from java.lang.Math...

2021-05-28 Thread Erik Svensson
https://issues.apache.org/jira/browse/MATH-1591 Please check it out. I should base it on the modularized_master branch, I take it? Cheers Erik Svensson Principal Architect Strategic Programs, Platform & Product Engineering Desk Mobile Email Address + 46 8 405 66 39 +

Re: Roman number conversion to Integer

2021-05-28 Thread Miguel Munoz
Here's one take on the problem: /** * Created by IntelliJ IDEA. * Date: 2/4/21 * Time: 1:36 AM * * @author Miguel Mu\u00f1oz */ public class ToRomans { private static int[] divisors = {1000, 500, 100, 50, 10, 5, 1}; private static char[] romans = {'M', 'D', 'C', 'L', 'X', 'V', 'I'};