chore: allow bumping stable => beta (#15907)

This commit is contained in:
trop[bot] 2018-11-30 11:17:02 -08:00 committed by Shelley Vohr
parent 17481882d0
commit 5dc15fc5d9

View file

@ -72,7 +72,7 @@ def main():
if args.bump == 'nightly':
version = get_next_nightly(curr_version)
elif args.bump == 'beta':
raise Exception("You can\'t bump to a beta from stable")
version = get_next_beta(curr_version)
elif args.bump == 'stable':
version = get_next_stable_from_stable(curr_version)
else: