I am adding the plugin to a project (https://github.com/IllinoisCogComp/saul/pull/372/files) and now trying to use it in order to automatically bump the version number upon release. When I try release
(inside sbt) I can see (via version
) that the version has been incremented; but after reload
ing the version is back to the previous one. Also nothing is being written to version.sbt
file. Any ideas where things might go wrong?
Asked
Active
Viewed 436 times
1

Daniel
- 5,839
- 9
- 46
- 85
-
Did you forget to remove the version setting here in the build.sbt? https://github.com/IllinoisCogComp/saul/pull/372/files#diff-fdc3abdfd754eeb24090dbd90aeec2ceL23 – thirstycrow Sep 01 '16 at 11:02
-
I removed the version since I think sbt-release gets overriden by that. So just kept the version in `version.sbt` – Daniel Sep 01 '16 at 15:10
-
I think I'm having the same basic problem. sbt-release seems to work except that it doesn't automatically increment the version number. Every time it runs, it just keeps re-using the same version number. – Don Branson Mar 15 '17 at 18:32
-
I don't know how but somehow I got it working. Check this out: https://github.com/CogComp/saul/blob/master/build.sbt – Daniel Mar 15 '17 at 18:52
-
Arg. Dumb mistake on my part. Our file build.sbt still had the hardcoded version in it. – Don Branson Mar 15 '17 at 19:29