SF.net SVN: docutils:[10344 ] trunk
milde--- via Docutils-checkins <[email protected]> Thu, 11 Jun 2026 06:04:49 +0000
| Newsgroups | gmane.text.docutils.cvs |
|---|---|
| Message-ID | <[email protected]> |
Revision: 10344
http://sourceforge.net/p/docutils/code/10344
Author: milde
Date: 2026-06-11 06:04:48 +0000 (Thu, 11 Jun 2026)
Log Message:
-----------
Set version to 1.0b1.dev.
Modified Paths:
--------------
trunk/docutils/HISTORY.rst
trunk/docutils/README.rst
trunk/docutils/RELEASE-NOTES.rst
trunk/docutils/docutils/__init__.py
trunk/docutils/test/functional/expected/buggy_mathml.html
trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
trunk/docutils/test/functional/expected/compact_lists.html
trunk/docutils/test/functional/expected/dangerous.html
trunk/docutils/test/functional/expected/field_name_limit.html
trunk/docutils/test/functional/expected/footnotes_html5.html
trunk/docutils/test/functional/expected/length_units_html5.html
trunk/docutils/test/functional/expected/math_experiments_mathml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
trunk/docutils/test/functional/expected/math_output_html.html
trunk/docutils/test/functional/expected/math_output_latex.html
trunk/docutils/test/functional/expected/math_output_mathjax.html
trunk/docutils/test/functional/expected/math_output_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
trunk/docutils/test/functional/expected/misc_rst_html4css1.html
trunk/docutils/test/functional/expected/misc_rst_html5.html
trunk/docutils/test/functional/expected/pep_html.html
trunk/docutils/test/functional/expected/rst_html5_tuftig.html
trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
trunk/docutils/test/functional/expected/standalone_rst_html5.html
trunk/docutils/test/functional/expected/standalone_rst_manpage.man
trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
trunk/docutils/test/test_writers/test_manpage.py
trunk/sandbox/manpage-writer/expected/characters.man
trunk/sandbox/manpage-writer/expected/compact_lists.man
trunk/sandbox/manpage-writer/expected/docinfo-deu-l_de.man
trunk/sandbox/manpage-writer/expected/docinfo-deu-l_en.man
trunk/sandbox/manpage-writer/expected/docinfo-deu.man
trunk/sandbox/manpage-writer/expected/docinfo-eng-l_de.man
trunk/sandbox/manpage-writer/expected/docinfo-eng-l_en.man
trunk/sandbox/manpage-writer/expected/docinfo-eng.man
trunk/sandbox/manpage-writer/expected/dotted.man
trunk/sandbox/manpage-writer/expected/indent.man
trunk/sandbox/manpage-writer/expected/man-de.1.man
trunk/sandbox/manpage-writer/expected/optionslisttest.man
trunk/sandbox/manpage-writer/expected/optionstoo.man
trunk/sandbox/manpage-writer/expected/quotes.man
trunk/sandbox/manpage-writer/expected/ref-2025-urue.man
trunk/sandbox/manpage-writer/expected/ref-2025.man
trunk/sandbox/manpage-writer/expected/references.man
trunk/sandbox/manpage-writer/expected/refs-urue.man
trunk/sandbox/manpage-writer/expected/refs.man
trunk/sandbox/manpage-writer/expected/test.man
Modified: trunk/docutils/HISTORY.rst
===================================================================
--- trunk/docutils/HISTORY.rst 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/HISTORY.rst 2026-06-11 06:04:48 UTC (rev 10344)
@@ -14,8 +14,8 @@
.. contents::
-Release 0.24b1.dev (unpublished)
-================================
+Release 1.0b1.dev (unpublished)
+===============================
* docutils/core.py
Modified: trunk/docutils/README.rst
===================================================================
--- trunk/docutils/README.rst 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/README.rst 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
=============================
- README: Docutils 0.24b1.dev
+ README: Docutils 1.0b1.dev
=============================
:Author: David Goodger
Modified: trunk/docutils/RELEASE-NOTES.rst
===================================================================
--- trunk/docutils/RELEASE-NOTES.rst 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/RELEASE-NOTES.rst 2026-06-11 06:04:48 UTC (rev 10344)
@@ -287,8 +287,8 @@
__ https://packages.debian.org/source/trixie/python-docutils
-Release 0.24b1.dev (unpublished)
-================================
+Release 1.0b1.dev (unpublished)
+===============================
Removed objects
`io.BinaryFileOutput` and `core.publish_cmdline_to_binary()`
Modified: trunk/docutils/docutils/__init__.py
===================================================================
--- trunk/docutils/docutils/__init__.py 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/docutils/__init__.py 2026-06-11 06:04:48 UTC (rev 10344)
@@ -85,7 +85,7 @@
__docformat__ = 'reStructuredText'
-__version__ = '0.24b1.dev'
+__version__ = '1.0b1.dev'
"""Docutils version identifier (complies with PEP 440)::
major.minor[.micro][releaselevel[serial]][.dev]
@@ -157,8 +157,8 @@
__version_info__ = VersionInfo(
- major=0,
- minor=24,
+ major=1,
+ minor=0,
micro=0,
releaselevel='beta', # one of 'alpha', 'beta', 'candidate', 'final'
serial=1, # pre-release number (0 for final releases and snapshots)
Modified: trunk/docutils/test/functional/expected/buggy_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/buggy_mathml.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/compact_lists.html
===================================================================
--- trunk/docutils/test/functional/expected/compact_lists.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/compact_lists.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<title>compact_lists.rst</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/dangerous.html
===================================================================
--- trunk/docutils/test/functional/expected/dangerous.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/dangerous.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<title>dangerous.rst</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/field_name_limit.html
===================================================================
--- trunk/docutils/test/functional/expected/field_name_limit.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/field_name_limit.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<title>field_list.rst</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/footnotes_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/footnotes_html5.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/footnotes_html5.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Test footnote and citation rendering</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/length_units_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/length_units_html5.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/length_units_html5.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Test length specifications</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_html.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_html.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/math_output_html.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
<link rel="stylesheet" href="../input/data/math.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_latex.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_latex.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/math_output_latex.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/math_output_mathjax.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathjax.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/math_output_mathjax.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<script type="text/javascript" src="/usr/share/javascript/mathjax/MathJax.js?config=TeX-AMS_CHTML"></script>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathml.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/math_output_mathml.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/mathematics_mathml.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<title>Additional tests with html4css1</title>
<link rel="stylesheet" href="foo&bar.css" type="text/css" />
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html5.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/misc_rst_html5.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Additional tests with HTML 5</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/pep_html.html
===================================================================
--- trunk/docutils/test/functional/expected/pep_html.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/pep_html.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -8,7 +8,7 @@
-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+ <meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<title>PEP 100 - Test PEP</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/rst_html5_tuftig.html
===================================================================
--- trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Special Features of the tuftig.css Stylesheet</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE document PUBLIC "+//IDN docutils.sourceforge.net//DTD Docutils Generic//EN//XML" "http://docutils.sourceforge.net/docs/ref/docutils.dtd">
-<!-- Generated by Docutils 0.24b1.dev -->
+<!-- Generated by Docutils 1.0b1.dev -->
<document ids="restructuredtext-test-document doctitle" names="restructuredtext\ test\ document doctitle" source="functional/input/standalone_rst_docutils_xml.rst" title="reStructuredText Test Document">
<title>reStructuredText Test Document</title>
<subtitle ids="examples-of-syntax-constructs subtitle" names="examples\ of\ syntax\ constructs subtitle">Examples of Syntax Constructs</subtitle>
Modified: trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" />
<meta name="author" content="David Goodger" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html5.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/standalone_rst_html5.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" xml:lang="en" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_manpage.man
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_manpage.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/standalone_rst_manpage.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.24b1.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2026-06-11 06:04:48 UTC (rev 10344)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.24b1.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 1.0b1.dev: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
Modified: trunk/docutils/test/test_writers/test_manpage.py
===================================================================
--- trunk/docutils/test/test_writers/test_manpage.py 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/docutils/test/test_writers/test_manpage.py 2026-06-11 06:04:48 UTC (rev 10344)
@@ -96,7 +96,7 @@
document_start = r""".\" Man page generated from reStructuredText
-.\" by the Docutils 0.24b1.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
"""
Modified: trunk/sandbox/manpage-writer/expected/characters.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/characters.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/characters.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/compact_lists.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/compact_lists.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/compact_lists.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/docinfo-deu-l_de.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/docinfo-deu-l_de.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/docinfo-deu-l_de.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/docinfo-deu-l_en.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/docinfo-deu-l_en.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/docinfo-deu-l_en.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/docinfo-deu.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/docinfo-deu.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/docinfo-deu.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/docinfo-eng-l_de.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/docinfo-eng-l_de.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/docinfo-eng-l_de.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/docinfo-eng-l_en.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/docinfo-eng-l_en.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/docinfo-eng-l_en.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/docinfo-eng.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/docinfo-eng.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/docinfo-eng.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/dotted.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/dotted.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/dotted.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/indent.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/indent.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/indent.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/man-de.1.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/man-de.1.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/man-de.1.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,6 +1,6 @@
'\" t
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/optionslisttest.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/optionslisttest.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/optionslisttest.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/optionstoo.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/optionstoo.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/optionstoo.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/quotes.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/quotes.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/quotes.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/ref-2025-urue.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/ref-2025-urue.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/ref-2025-urue.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/ref-2025.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/ref-2025.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/ref-2025.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/references.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/references.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/references.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/refs-urue.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/refs-urue.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/refs-urue.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/refs.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/refs.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/refs.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,5 +1,5 @@
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
Modified: trunk/sandbox/manpage-writer/expected/test.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/test.man 2026-06-11 05:54:43 UTC (rev 10343)
+++ trunk/sandbox/manpage-writer/expected/test.man 2026-06-11 06:04:48 UTC (rev 10344)
@@ -1,6 +1,6 @@
'\" t
.\" Man page generated from reStructuredText
-.\" by the Docutils 0.23rc2.dev manpage writer.
+.\" by the Docutils 1.0b1.dev manpage writer.
.
.
.nr rst2man-indent-level 0
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.