Releases: nedbat/scriv
Releases · nedbat/scriv
1.8.0
➡️ PyPI page: scriv 1.8.0.
➡️ To install: python3 -m pip install scriv==1.8.0
Added
- Add a
--draftoption to the github-release command, closing issue 164. Thanks, Alyssa Coghlan. - The
--configoption to all commands lets you specify a configuration file to use. Thanks, Max Christoph - A new configuration setting
compact_fragmentsis a boolean, defaulting to False. If set to true, fragments will be concatenated without blank lines between them, allowing for compact bullet lists. Closes issue 148. - The names of fragment files can be customized with the new
fragment_name_fieldsconfiguration option, which is a list chosen from"created",branch, andauthor. Closes issue #103. - A new configuration setting
md_setext_charsenables setext-style underlined headings in Markdown output. Set to"=-"to use standard header underlines. Finishes issue 167. - A new option
md_html_anchorscan be set to False to suppress the creation of HTML anchors for Markdown headings, closingissue 168. Some purists don't like HTML tags in Markdown, though they are fine with HTML comments. :)
Changed
- Dropped support for Python 3.9 and declared support for Python 3.14.
1.7.0
➡️ PyPI page: scriv 1.7.0.
➡️ To install: python3 -m pip install scriv==1.7.0
Added
- The GitHub release template now can use
{{title}}to get the title of the changelog entry. - The
formatsetting is now defaulted based on thechangelogsetting. Previously,changelog=README.mdwould still use .rst formatting. Now it will use Markdown.
Changed
- Two settings have new names to better reflect what scriv does. The
output_filesetting is now calledchangelogand theinsert_markersetting is now calledstart_marker. The old names will continue to work. Closes issue 77.
1.6.2
➡️ PyPI page: scriv 1.6.2.
➡️ To install: python3 -m pip install scriv==1.6.2
Fixed
- Replaced the invalid GitHub config key
scriv.user_nickwithscriv.user-nick. Fixes issue 130. Thanks, Mark Dickinson.
1.6.1
➡️ PyPI page: scriv 1.6.1.
➡️ To install: python3 -m pip install scriv==1.6.1
Fixed
- Corrected two minor packaging errors: the Mastodon badge and a typo in the short description.
1.6.0
➡️ PyPI page: scriv 1.6.0.
➡️ To install: python3 -m pip install scriv==1.6.0
Added
- Add a
printcommand that can write changelog entries to standard out or to a file, closing issue 115. Thanks, Kurt McKee
Changed
- Dropped support for Python 3.7 and 3.8, and added 3.13.
Fixed
- A final newline is no longer stripped when rendering the new fragment template, fixing issue 108.
- Configuration setting
md_header_levelis allowed to be an integer in TOML files, closing issue 90. Thanks, Michael Makukha.
1.5.1
1.5.0
➡️ PyPI page: scriv 1.5.0.
➡️ To install: python3 -m pip install scriv==1.5.0
Added
- RST to Markdown conversion can now be stricter. Using the
--fail-if-warnoption on thescriv github-releasescommand will fail the command if your RST conversion generates warnings, for example due to malformed link references. - The
scriv github-releasecommand now has a--check-linksoption to check URLs. Each is fetched, and if an error occurs, warnings will show the URLs that didn't succeed.
Fixed
- Commands no longer display full tracebacks for exceptions raised by scriv code.
1.4.0
➡️ PyPI page: scriv 1.4.0.
➡️ To install: python3 -m pip install scriv==1.4.0
Added
- Literals can be extracted from .cabal files. Thanks Javier Sagredo.
- Use the git config
scriv.user_nickfor the user nick part of the fragment file. Thanks to Ronny Pfannschmidt, fixing issue 103. - Settings can now be prefixed with
command:to execute the rest of the setting as a shell command. The output of the command will be used as the value of the setting.
Fixed
- If there are no changelog fragments,
scriv collectnow exits with status code of 2, fixing issue 110. - Changelogs with non-version headings now produce an understandable error message from
scriv collect, thanks to James Gerity, fixing issue 100.
1.3.1
➡️ PyPI page: scriv 1.3.1.
➡️ To install: python3 -m pip install scriv==1.3.1
Fixed
- The Version class introduced in 1.3.0 broke the
scriv github-releasecommand. This is now fixed.
1.3.0
➡️ PyPI page: scriv 1.3.0.
➡️ To install: python3 -m pip install scriv==1.3.0
Added
.cfgfiles can now be read withliteral:settings, thanks to Matias Guijarro.