I mark releases with hg tag <version-number>. When I release a bugfix, I don't want to increment the version number, but I want to use the most recent version number during the build process. If I run hg tags, it will show tip first, then the version numbers in descending order. I can get it running hg tags | head -n2 | tail -n1. I wonder if there is a more elegant, pure mercurial way to get it.
| |||
|
feedback
|
|
Well, I'm answering my own question. I found the solution, | |||
|
feedback
|
|
Use the ParentRevSpecExtension: http://mercurial.selenic.com/wiki/ParentrevspecExtension EDIT: Sorry, that doesn't answer the question. | |||
|
feedback
|