Every time I push my app to heroku I see the line
-----> Launching... done, v43
Is there a way to make that version number apear within the
You can make a Ruby file to do the following:
require 'heroku' heroku = Heroku::Client.new('username','password') puts heroku.releases('appname')
This returns a JSON document that contains a ton of metadata about your deploys include SHA, version number, etc.