Skip to content

Commit

Permalink
release: 0.38.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
RyotaUshio committed Mar 14, 2024
1 parent 92007af commit 4ee2972
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if __name__ == '__main__':
assert manifest['version'] == package['version']

if 'beta' in args.version:
ans = input(f'[Beta-release] Update beta version from {manifest_beta["version"]} to {args.version}? (y/[n]):').strip()
ans = input(f'[Beta-release] Update beta version from {manifest_beta["version"]} to {args.version}? (y/[n]): ').strip()
if ans != 'y':
exit(1)

Expand All @@ -40,7 +40,7 @@ if __name__ == '__main__':
json.dump(manifest_beta, f, indent=4)

else:
ans = input(f'Update version from {manifest["version"]} to {args.version}? (y/[n]):').strip()
ans = input(f'Update version from {manifest["version"]} to {args.version}? (y/[n]): ').strip()
if ans != 'y':
exit(1)

Expand Down

0 comments on commit 4ee2972

Please sign in to comment.