Re: [VOTE] Release Apache Commons Pool 2.8.0 based on RC1

2019-12-07 Thread Rob Tompkins
Gary…I hope all is well down there for the holidays. Regarding the release, I’m a +1: signatures all check out, builds on java 8 and 11 check out. The reports all look reasonable to me. -Rob > On Dec 7, 2019, at 6:09 PM, Gary Gregory wrote: > > We have fixed a few bugs and provided enhancemen

Re: [commons-numbers] 02/03: Added getAbsolute() to complement getArgument().

2019-12-07 Thread Gilles Sadowski
2019-12-08 2:00 UTC+01:00, aherb...@apache.org : > This is an automated email from the ASF dual-hosted git repository. > > aherbert pushed a commit to branch master > in repository https://gitbox.apache.org/repos/asf/commons-numbers.git > > commit 65f60835e2afe26bdaba9665d62edb25195bfff6 > Author:

[VOTE] Release Apache Commons Pool 2.8.0 based on RC1

2019-12-07 Thread Gary Gregory
We have fixed a few bugs and provided enhancements since Apache Commons Pool 2.7.0 was released, so I would like to release Apache Commons Pool 2.8.0. Apache Commons Pool 2.8.0 RC1 is available for review here: https://dist.apache.org/repos/dist/dev/commons/pool/2.8.0-RC1 (svn revision 37135)

Re: [text.CaseUtils] adding support for snake_case and kebab-case

2019-12-07 Thread Rob Spoor
On 07/12/2019 18:19, sebb wrote: On Sat, 7 Dec 2019 at 17:05, Bryan Rickman wrote: I recently used the text.CaseUtils for converting to camelCase and PascalCase. I also needed to convert to snake_case and kebab-case, and ended up writing my own code for that (I wasn't really a big fan of other

Re: [text.CaseUtils] adding support for snake_case and kebab-case

2019-12-07 Thread Bryan Rickman
I was doing conversions for JSON properties which often do use different cases. My conversions were from camelCase to the other cases, not delimited words. If that isn't a good fit, I won't bother, but I don't mind adding it if others think it could be useful. On Sat, Dec 7, 2019, 12:20 PM sebb w

Re: [text.CaseUtils] adding support for snake_case and kebab-case

2019-12-07 Thread sebb
On Sat, 7 Dec 2019 at 17:05, Bryan Rickman wrote: > I recently used the text.CaseUtils for converting to camelCase and > PascalCase. I also needed to convert to snake_case and kebab-case, and > ended up writing my own code for that (I wasn't really a big fan of other > utility options out there).

[text.CaseUtils] adding support for snake_case and kebab-case

2019-12-07 Thread Bryan Rickman
I recently used the text.CaseUtils for converting to camelCase and PascalCase. I also needed to convert to snake_case and kebab-case, and ended up writing my own code for that (I wasn't really a big fan of other utility options out there). Would it be well received if I submitted a PR for adding th