14
0

- Update to 0.21.2:

* General:
    + Drop support for Python 3.7 and 3.8.
    + Provide rst2* "console_scripts" entry points (without the .py
      extension) instead of installing the rst2*.py front end tools in the
      binary PATH.
    + Use docutils --reader=pep --writer=pep_html for a PEP preview.
    + Use python -m docutils.writers.odf_odt.prepstyles to strip the page
      size from an ODT writer stylesheet.
    + Use the same CSV format for the :header: option and the main data of
      the "csv-table" directive.
    + New option "loading" for the "image" directive. Sets the new attribute
      loading of the <image> doctree element.
  * Configuration changes:
    + New configuration setting root_prefix. Configurable root directory
      for included files.
    + New configuration setting sources for the "buildhtml.py" application.
    + Simpler and more secure input encoding default behaviour:
      # Do not use the locale encoding as fallback if Python is started in
        UTF-8 mode. Stop using "latin1" as second fallback.
      # Remove BOM (U+FEFF ZWNBSP at start of data) only if the
        input_encoding configuration setting is None, '', 'utf-8-sig',
        'utf-16', or 'utf-32'. Do not remove other ZWNBSPs.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-docutils?expand=0&rev=94
This commit is contained in:
2024-11-03 05:39:44 +00:00
committed by Git OBS Bridge
parent 0525ccfdd0
commit 6a98723a6f
4 changed files with 37 additions and 16 deletions

View File

@@ -1,3 +1,30 @@
-------------------------------------------------------------------
Sun Nov 3 05:32:05 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 0.21.2:
* General:
+ Drop support for Python 3.7 and 3.8.
+ Provide rst2* "console_scripts" entry points (without the .py
extension) instead of installing the rst2*.py front end tools in the
binary PATH.
+ Use docutils --reader=pep --writer=pep_html for a PEP preview.
+ Use python -m docutils.writers.odf_odt.prepstyles to strip the page
size from an ODT writer stylesheet.
+ Use the same CSV format for the :header: option and the main data of
the "csv-table" directive.
+ New option "loading" for the "image" directive. Sets the new attribute
loading of the <image> doctree element.
* Configuration changes:
+ New configuration setting root_prefix. Configurable root directory
for included files.
+ New configuration setting sources for the "buildhtml.py" application.
+ Simpler and more secure input encoding default behaviour:
# Do not use the locale encoding as fallback if Python is started in
UTF-8 mode. Stop using "latin1" as second fallback.
# Remove BOM (U+FEFF ZWNBSP at start of data) only if the
input_encoding configuration setting is None, '', 'utf-8-sig',
'utf-16', or 'utf-32'. Do not remove other ZWNBSPs.
-------------------------------------------------------------------
Sat Mar 30 15:15:42 UTC 2024 - Ben Greiner <code@bnavigator.de>