[lang][text] New case conversion util

2017-12-11 Thread Gary Gregory
Too weird for lang or text: public enum LetterCase { LOWER { @Override public String toCaseString(final String source, final Locale locale) { return source.toLowerCase(locale); } }, UPPER { @Override public String toCaseString(final

Re: [VOTE] Release Apache Commons JCS 2.2.1 (roll 2)

2017-12-11 Thread Romain Manni-Bucau
Hmm, I can drop the rc2, no problem but can you confirm rc3 will be this exact vote with revisions as only change? If so can try next week yes. Le 11 déc. 2017 22:15, "Thomas Vandahl" a écrit : > Hi Romain, > > On 20.11.17 09:15, Romain Manni-Bucau wrote: > > do we have a real blocker on the r

Re: [VOTE] Release Apache Commons JCS 2.2.1 (roll 2)

2017-12-11 Thread Thomas Vandahl
Hi Romain, On 20.11.17 09:15, Romain Manni-Bucau wrote: > do we have a real blocker on the release? Being said having the RC or > not now is pointless since the tag is there, are we waiting for > anything particular? Happy to drop the RC if it brings more confusion > than it helps. Would you plea

Re: [BCEL] thread safety

2017-12-11 Thread Dave Brosius
The main issue was the static Repository, but instance based Repositories are available now. On 12/11/2017 11:26 AM, Torsten Curdt wrote: It's been a looong time since I worked on BCEL and my memories might serve me wrong but I think thread safety is something that should not necessarily happe

Re: [BCEL] thread safety

2017-12-11 Thread Torsten Curdt
It's been a looong time since I worked on BCEL and my memories might serve me wrong but I think thread safety is something that should not necessarily happen on the BCEL level. BCEL holds a lot of state. Making all that threadsafe - I'd like to see the use cases first as it might come at a cost. BC

Re: [All] "Commons Math" is not a component

2017-12-11 Thread Gary Gregory
On Dec 11, 2017 09:17, "Stephen Colebourne" wrote: This all seems reasonable. One things I'd suggest is getting at least one new component to a full release as soon as possible to demonstrate that the plan can work. This suggests that step 1 involves a full release for [numbers] Right, get the

[CSV] Release 1.6

2017-12-11 Thread Gary Gregory
There is one minor new feature and a proposed fix for https://issues.apache.org/jira/browse/CSV-219 I'd like some feedback on CSV-219 before releasing. If there is anything you want in a new release, please pipe up. Gary

Re: [All] "Commons Math" is not a component

2017-12-11 Thread Stephen Colebourne
This all seems reasonable. One things I'd suggest is getting at least one new component to a full release as soon as possible to demonstrate that the plan can work. This suggests that step 1 involves a full release for [numbers] Stephen On 9 December 2017 at 01:59, Gilles wrote: > Hi all. > > S

Re: [All] "Commons Math" is not a component

2017-12-11 Thread Gary Gregory
I think I have some issues WRT "supported" and "unsupported" code that I have mentioned on this list in the past but I do not want to stand in the way of work getting done. So go for it. Our community will voice, hack and vote I hope, with as much energy, diligence, and perseverance as you have sho

[BCEL] thread safety

2017-12-11 Thread Gary Gregory
Thread safety or lack thereof seems to be a recurring theme in BCEL. Is anyone available to take a closer look at what it would take to update the code with thread safety in mind? Gary