Lines Matching +full:dry +full:- +full:run
13 VERSION_REGEX = re.compile('^[0-9]+\.[0-9]+\.[0-9]+$')
14 DATE_REGEX = re.compile('^[0-9]{4}-[0-9]{2}-[0-9]{2}$')
18 print("release-version is not in the correct format.")
20 print("release-date is not in the correct format.")
23 …parser = argparse.ArgumentParser(description="Finalize the unrelease changes in .changes/next-rele…
24 …parser.add_argument('--release-version', '-v', dest='release_version', required=True, help="The ve…
25 …er.add_argument('--release-date', '-d', dest='release_date', required=True, help="The date for the…
26 …parser.add_argument('--generate-changelog', '-g', dest='generate_changelog_now', action='store_tru…
27 …parser.add_argument('--dry-run', '-r', dest='dry_run', action='store_true', help="Whether it is a …
32 next_release = load_unreleased_changes('.changes/next-release')
49 print("Dry run succeeded")
55 shutil.rmtree('.changes/next-release')