I am currently working on a coding project using bzr source code management software (bazaar). I would like to include the version number in the file code of my project
So that I can call the "VERSION" variable and drop the current working version. Inside the code, you can do this:
var VERSION = ###;
Where ### is the current version number. Is it possible? or do I need to check bzr information in a file and manually upgrade my version before the new code is introduced?
source
share