()
| 144 | |
| 145 | |
| 146 | def read_config(): |
| 147 | parser = argparse.ArgumentParser(description='Adds changelog entries in changelog/ folder') |
| 148 | parser.add_argument('--version', type=Version.parse, help='Solr version to add changes to', required=True) |
| 149 | parser.add_argument('--user', default='solrbot', help='Git user to get changes for. Defaults to solrbot') |
| 150 | newconf = parser.parse_args() |
| 151 | return newconf |
| 152 | |
| 153 | |
| 154 | def get_gitlog_lines(user: str, prev_tag: str): |
no outgoing calls
no test coverage detected
searching dependent graphs…