[RESULT] [VOTE] Release DBCP 2.1.1 based on RC1

2015-08-06 Thread Phil Steitz
This vote has passed, with binding +1 votes from

Phil Steitz
Gary Gregory
Oliver Heger
Luc Maisonobe
Jörg Schaible

Thanks!

Phil

On 8/2/15 10:09 PM, Phil Steitz wrote:
> This is a vote to release version 2.1.1 of Apache Commons DBCP based on RC1. 
>
> Here is the release candidate:
> https://dist.apache.org/repos/dist/dev/commons/dbcp/
> (r10048)
>
> Built from:
> https://svn.apache.org/repos/asf/commons/proper/dbcp/tags/DBCP_2_1_1_RC1/
> (r1693845)
>
> Release notes:
> https://dist.apache.org/repos/dist/dev/commons/dbcp/RELEASE-NOTES.txt
>
> Maven artifacts:
> https://repository.apache.org/content/repositories/orgapachecommons-1102
>
> keys:
>
> https://www.apache.org/dist/commons/KEYS
>
> Votes, please.
>
> This vote will close in 72 hours (6-August-2015 05:30 GMT) 
>
>  [ ] +1 Release these artifacts
>  [ ] +0 OK, but...
>  [ ] -0 OK, but really should fix...
>  [ ] -1 I oppose this release because...
>
> Thanks!
>
> Phil
>
>


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



[Math] Straight Line Problem Jacobian Verification

2015-08-06 Thread Ole Ersoy

Hi Guys,

Reviewing the org.apache.commons.math4.fitting.leastsquares.StraightLineProblem 
(f(x) = ax  + b).   For the jacobian we have:

// Partial derivative wrt "a".
jacobian[i][0] = p[0];
// Partial derivative wrt "b".
jacobian[i][1] = 1;

Should it be:

// Partial derivative wrt "a".
jacobian[i][0] = 1;
// Partial derivative wrt "b".
jacobian[i][1] = 0;

Cheers,
Ole




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



[codec] release 1.11 soon

2015-08-06 Thread Gary Gregory
I think I'll create an RC to release 1.11 soon.

Gary

-- 
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


[csv] release 1.1.1

2015-08-06 Thread Gary Gregory
I think I'll create an RC to release 1.1.1 soon.

Gary

-- 
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: [Math] Straight Line Problem Jacobian Verification

2015-08-06 Thread Ole Ersoy

Ooops - Never mind - crossed my calculus wires for a sec there - sorry for the 
noise,
Ole


On 08/06/2015 05:30 PM, Ole Ersoy wrote:

Hi Guys,

Reviewing the org.apache.commons.math4.fitting.leastsquares.StraightLineProblem 
(f(x) = ax  + b).   For the jacobian we have:

// Partial derivative wrt "a".
jacobian[i][0] = p[0];
// Partial derivative wrt "b".
jacobian[i][1] = 1;

Should it be:

// Partial derivative wrt "a".
jacobian[i][0] = 1;
// Partial derivative wrt "b".
jacobian[i][1] = 0;

Cheers,
Ole






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