While trying to write some tests for the release task, I noticed a puzzling behavior.
Let's say I have a buildfile with <code> VERSION_NUMBER = '1.1.0-SNAPSHOT' NEXT_VERSION = '1.2.0' </code> For me, this means I am currently developing the 1.1.0 version, and when I'm done, I will tag this as a 1.1.0 release and start working on the 1.2.0. Yet, when I call the release task, I get a tag called '1.2.0', not '1.1.0'. Am I off by one or is this a bug? Lacton