You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomee.apache.org by Jacek Laskowski <ja...@laskowski.net.pl> on 2009/06/12 16:20:36 UTC

Post-3.1.1 release chore - JIRA with 3.1.1 as unreleased and poms at 3.1.1-SNAPSHOT level

Hi,

Just noticed that JIRA and poms are still at 3.1.1-SNAPSHOT level. How
can it be fixed? I'm rising my hand up for doing it if I get a helping
hand.

Jacek

-- 
Jacek Laskowski
Notatnik Projektanta Java EE - http://www.JacekLaskowski.pl

Re: Post-3.1.1 release chore - JIRA with 3.1.1 as unreleased and poms at 3.1.1-SNAPSHOT level

Posted by David Blevins <da...@visi.com>.
On Jun 12, 2009, at 7:20 AM, Jacek Laskowski wrote:

> Hi,
>
> Just noticed that JIRA and poms are still at 3.1.1-SNAPSHOT level. How
> can it be fixed? I'm rising my hand up for doing it if I get a helping
> hand.

I rolled the version number forward with a little find/perl:

find . -name 'pom.xml' -exec perl -i -pe 's/3.1.1-SNAPSHOT/3.1.2- 
SNAPSHOT/g' {} \;
find . -name 'build.xml' -exec perl -i -pe 's/3.1.1-SNAPSHOT/3.1.2- 
SNAPSHOT/g' {} \;

Will login to Jira and close the 3.1.1 version shortly.

-David