I'm in search of a module (or technique) to keep track of the software/release version that a drupalDrupal installation is running. NotI am not talking about the drupalDrupal version running the site (e.g 7.12) but of the implemented site itself. Exactly, exactly like this stackexchangeany Stack Exchange site does on the footer (currently: rev 2012.4.5.2127).
I need a structured way to keep track of this data (so a plain text block on the footer will not do) because I'll be needingneed to be accessingaccess this infoinformation from other systems as well.
Currently I've solved it by using an entry in the variable tablea persistent variable that I handle with Drush. To set it:
drush vset --always-set release "1.0.4" and to get it:
drush vget release # Set it. drush vset --always-set release "1.0.4" # Get it. drush vget release So, isIs there another (probably better) way of handling this?
thanks