blob: 8e7f377e001e55039ed958575d1fe28e48068fbf [file] [log] [blame]
from __future__ import print_function
major = 22
hotfix = 0
hotfix_str = chr(ord('a') + hotfix) if hotfix else ''
beta = 0
beta_str = '-beta{}'.format(beta) if beta > 0 else ''
canary = True
canary_str = '-canary' if canary else ''
release = 'r{}{}{}{}'.format(major, hotfix_str, beta_str, canary_str)
if __name__ == '__main__':
print(release)