↵ Return to the main page of python3-specfile
View build
Search for updates
Package Info
🠗 Changelog
🠗 Dependencies
🠗 Provides
🠗 Files
Date | Author | Change |
---|---|---|
2025-05-16 | Packit <hello at packit dot dev> - 0.35.1-1 | - We have fixed a bug that caused changes to get lost when a spec file passed as a path was replaced or deleted. (#470) |
2025-04-13 | Packit <hello at packit dot dev> - 0.35.0-1 | - Added support for creating Specfile instances from file objects and strings. (#458) - The `context_management` type stubs now use `ParamSpec` from `typing_extensions` to support Python < 3.10. (#466) |
2025-03-18 | Packit <hello at packit dot dev> - 0.34.2-1 | - context_management: add a type stub override to fix typing. Type checkers like mypy and pyright can now correctly determine the types for `.sources()`, `.sections()`, and the other `Specfile` methods that return context managers. (#457) |
2025-02-07 | Packit <hello at packit dot dev> - 0.34.1-1 | - Removed the usage of a walrus operator for Python 3.6 compatibility. (#450) |
2025-01-27 | Packit <hello at packit dot dev> - 0.34.0-1 | - Added support for detached (open)SUSE style changelogs (#444) - Resolves: rhbz#2342178 |
2025-01-18 | Fedora Release Engineering <releng at fedoraproject dot org> - 0.33.0-2 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild |
2024-12-16 | Packit <hello at packit dot dev> - 0.33.0-1 | - There is a new convenience method `Sections.get_or_create()` that allows you to manipulate a section without checking if it exists first. If a section doesn't exist, it will be appended to the end. (#441) For example, this will work properly even on spec files without `%changelog`: ``` with spec.sections() as sections: changelog = sections.get_or_create("changelog") changelog[:] = ["%autochangelog"] ``` - Resolves: rhbz#2332288 |
2024-11-13 | Packit <hello at packit dot dev> - 0.32.6-1 | - New minor release for testing in CBS Koji |
2024-10-26 | Packit <hello at packit dot dev> - 0.32.5-1 | - We have fixed our parser to take in account the deprecations introduced in Python 3.8 (#420) |
2024-10-11 | Packit <hello at packit dot dev> - 0.32.4-1 | - NEVR and NEVRA classes are now hashable (#416) |