mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	- Use `manylinux-shared` images for Linux builds - Discontinue `yt-dlp_linux_armv7l`/`linux_armv7l_exe` release binary - Add `yt-dlp_linux_armv7l.zip`/`linux_armv7l_dir` release binary - Add `yt-dlp_musllinux` and `yt-dlp_musllinux_aarch64` release binaries - Migrate `linux_exe` build strategy from staticx+musl to manylinux2014/glibc2.17 - Rewrite release.yml's "unholy bash monstrosity" as devscripts/setup_variables.py Closes #10072, Closes #10630, Closes #10578, Closes #13976, Closes #13977, Closes #14106 Authored by: bashonly
		
			
				
	
	
		
			29 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python3
 | 
						|
 | 
						|
# Allow direct execution
 | 
						|
import os
 | 
						|
import sys
 | 
						|
 | 
						|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
 | 
						|
 | 
						|
from pathlib import Path
 | 
						|
 | 
						|
from devscripts.make_changelog import create_changelog, create_parser
 | 
						|
from devscripts.utils import read_file, read_version, write_file
 | 
						|
 | 
						|
# Always run after devscripts/update-version.py, and run before `make doc|pypi-files|tar|all`
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    parser = create_parser()
 | 
						|
    parser.description = 'Update an existing changelog file with an entry for a new release'
 | 
						|
    parser.add_argument(
 | 
						|
        '--changelog-path', type=Path, default=Path(__file__).parent.parent / 'Changelog.md',
 | 
						|
        help='path to the Changelog file')
 | 
						|
    args = parser.parse_args()
 | 
						|
 | 
						|
    header, sep, changelog = read_file(args.changelog_path).partition('\n### ')
 | 
						|
    current_version = read_version()
 | 
						|
    if current_version != changelog.splitlines()[0]:
 | 
						|
        new_entry = create_changelog(args)
 | 
						|
        write_file(args.changelog_path, f'{header}{sep}{current_version}\n{new_entry}\n{sep}{changelog}')
 |