Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | | * | Fix #10723: LaTeX verbatimwithframe=false without effect since 5.1.0 | Jean-François B | 2022-07-29 | 2 | -30/+43 | |
| | |/ | ||||||
| * | | Merge pull request #10712 from eloyvallinaes/patch-1 | Takeshi KOMIYA | 2022-07-28 | 1 | -1/+1 | |
| |\ \ | | | | | | | | | Update deploying.rst | |||||
| | * | | Update deploying.rst | eloyvallinaes | 2022-07-26 | 1 | -1/+1 | |
| | | | | | | | | | | | | Version 0.4 of sphinx-action contains a problem investigated and documented here: https://github.com/ammaraskar/sphinx-action/issues/5. The action throws an error claiming it can't write the log file. The problem is fixed in master and since this is a tutorial, it is more or less expected that it should work off the bat, so I thinking pinning the master version for now and the next release when it comes out, might be the best way to help newbies. | |||||
| * | | | Merge pull request #10708 from danieleades/strict-typing2 | Takeshi KOMIYA | 2022-07-28 | 8 | -12/+83 | |
| |\ \ \ | | | | | | | | | | | incremental adoption of 'strict optional' | |||||
| | * | | | set up mypy for incremental adoption of 'strict optional' | daniel.eades | 2022-07-26 | 8 | -12/+83 | |
| | |/ / | ||||||
* | | | | Merge branch '5.x' | Adam Turner | 2022-07-26 | 6 | -56/+167 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Merge branch '5.1.x' into 5.x | Adam Turner | 2022-07-26 | 3 | -2/+34 | |
| |\ \ \ | | |/ / | |/| / | | |/ | | | | | | | # Conflicts: # CHANGES # sphinx/__init__.py | |||||
| | * | Bump version | Adam Turner | 2022-07-26 | 2 | -3/+24 | |
| | | | ||||||
| | * | Bump to 5.1.1 finalv5.1.1 | Adam Turner | 2022-07-26 | 2 | -3/+13 | |
| | | | ||||||
| | * | Fix ValueError popping out in `sphinx.ext.napoleon` (#10709) | Antony Lee | 2022-07-25 | 1 | -12/+22 | |
| | | | | | | | | | There's some parts of the code still expecting a StopIteration instead. | |||||
| | * | Improve support for deprecated builders without env arg (#10702) | James Knight | 2022-07-25 | 2 | -2/+3 | |
| | | | | | | | | | Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> | |||||
| * | | Fix ValueError popping out in `sphinx.ext.napoleon` (#10709) | Antony Lee | 2022-07-25 | 1 | -12/+22 | |
| | | | | | | | | | There's some parts of the code still expecting a StopIteration instead. | |||||
| * | | C++, bump env version because of PR | Jakob Lykke Andersen | 2022-07-25 | 1 | -1/+1 | |
| | | | ||||||
| * | | Merge pull request #10703 from jakobandersen/cpp_requires_clause | Jakob Lykke Andersen | 2022-07-24 | 3 | -41/+110 | |
| |\ \ | | | | | | | | | C++, improve requires clause support (#10286 update) | |||||
| | * | | C++, update changelog | Jakob Lykke Andersen | 2022-07-24 | 1 | -0/+3 | |
| | | | | ||||||
| | * | | C++, refactor requires clause ID handling | Jakob Lykke Andersen | 2022-07-24 | 1 | -19/+28 | |
| | | | | ||||||
| | * | | C++, PR revision | Jakob Lykke Andersen | 2022-07-24 | 1 | -25/+18 | |
| | | | | ||||||
| | * | | [C++] Allow template prefix on union declarations | Jeremy Maitin-Shepard | 2022-07-24 | 2 | -1/+4 | |
| | | | | ||||||
| | * | | [C++] Allow trailing requires-clause on constructors | Jeremy Maitin-Shepard | 2022-07-24 | 2 | -1/+10 | |
| | | | | ||||||
| | * | | [C++] Allow trailing-requires-clause on functions without a template prefix | Jeremy Maitin-Shepard | 2022-07-24 | 2 | -2/+3 | |
| | | | | ||||||
| | * | | [C++] Support requires-clause in more places | Jeremy Maitin-Shepard | 2022-07-24 | 2 | -33/+84 | |
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously a C++20 requires-clause was only supported on `function` declarations. However, the C++ standard allows a require-clause on class/union templates, alias templates, and variable templates, and also allows a requires clause after each template parameter list, not just the final one. This moves the requiresClause to be a property of `ASTTemplateParams` rather than `ASTDeclaration` to better match the C++ grammar and allows requires clauses in many places that are supported by C++20 but were not previously allowed by Sphinx, namely: - On class templates, alias templates, and variable templates - After each template parameter list, not just the last one. - After the template parameter list in template template parameters. When encoding the id, the requires clause of the last template parameter list is treated specially in order to preserve compatibility with existing v4 ids. | |||||
* | | | Merge branch '5.x' | Adam Turner | 2022-07-24 | 31 | -725/+726 | |
|\ \ \ | |/ / | | | | | | | | | | | | | # Conflicts: # CHANGES # sphinx/__init__.py | |||||
| * | | Bump version | Adam Turner | 2022-07-24 | 2 | -3/+24 | |
| |/ | ||||||
| * | Bump to 5.1.0 finalv5.1.0 | Adam Turner | 2022-07-24 | 2 | -40/+11 | |
| | | ||||||
| * | Update message catalogs (#10698) | github-actions[bot] | 2022-07-24 | 21 | -652/+658 | |
| | | | | | | Co-authored-by: tk0miya <tk0miya@users.noreply.github.com> | |||||
| * | Update include_patterns implementation (#10680) | Adam Turner | 2022-07-23 | 8 | -21/+19 | |
| | | ||||||
| * | Merge pull request #10676 from AA-Turner/authors | Takeshi KOMIYA | 2022-07-24 | 1 | -15/+20 | |
| |\ | | | | | | | Clarify sorting in AUTHORS; sort and update maintainers list | |||||
| | * | Tweak headings | Adam Turner | 2022-07-18 | 1 | -2/+11 | |
| | | | ||||||
| | * | Update and sort maintainers list | Adam Turner | 2022-07-17 | 1 | -15/+11 | |
| | | | ||||||
| | * | Update sorting note | Adam Turner | 2022-07-17 | 1 | -1/+1 | |
| | | | ||||||
* | | | Merge pull request #10690 from ericholscher/patch-3 | Takeshi KOMIYA | 2022-07-24 | 1 | -3/+3 | |
|\ \ \ | | | | | | | | | Note that the tutorial is a tutorial, to help with search | |||||
| * | | | Note that the tutorial is a tutorial, to help with search | Eric Holscher | 2022-07-21 | 1 | -3/+3 | |
| | | | | ||||||
* | | | | Merge branch '5.x' | Jean-François B | 2022-07-23 | 5 | -26/+31 | |
|\ \ \ \ | | |/ / | |/| | | ||||||
| * | | | Merge pull request #10696 from jfbu/latex_fix_for_old_latex | Jean-François B | 2022-07-23 | 5 | -26/+31 | |
| |\ \ \ | | | | | | | | | | | Fix #10695: old LaTeX does not allow \@ifpackageloaded usage in body | |||||
| | * | | | LaTeX: fix another incompatibility with old pict2e LaTeX | Jean-François B | 2022-07-23 | 1 | -7/+7 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We need to make sure the \put command arguments will expand to a (fractional) number, so \strip@pt is added, and the \dimexpr properly closed with \relax | |||||
| | * | | | Fix #10695: old LaTeX does not allow \@ifpackageloaded usage in body | Jean-François B | 2022-07-23 | 5 | -19/+24 | |
| |/ / / | ||||||
* | | | | Merge branch '5.x' | Takeshi KOMIYA | 2022-07-23 | 5 | -6/+8 | |
|\ \ \ \ | |/ / / | | / / | |/ / |/| | | ||||||
| * | | Merge branch '5.0.x' into 5.x | Takeshi KOMIYA | 2022-07-23 | 2 | -3/+3 | |
| |\ \ | ||||||
| | * \ | Merge pull request #10693 from tk0miya/mypy-0.971 | Takeshi KOMIYA | 2022-07-23 | 2 | -3/+3 | |
| | |\ \ | | | | | | | | | | | Fix mypy violations (with mypy-0.971) | |||||
| | | * | | Fix mypy violations (with mypy-0.971) | Takeshi KOMIYA | 2022-07-23 | 2 | -3/+3 | |
| | |/ / | ||||||
| * | | | Merge pull request #10684 from marxin/fix-version-indentation | Jean-François B | 2022-07-20 | 2 | -3/+3 | |
| |\ \ \ | | | | | | | | | | | Fix indentation of .. version{changed,added}. | |||||
| | * | | | Fix indentation of .. version{changed,added}. | marxin | 2022-07-19 | 2 | -3/+3 | |
| | | | | | ||||||
| * | | | | Merge pull request #10679 from jfbu/update_bindep | Jean-François B | 2022-07-20 | 1 | -0/+2 | |
| |\ \ \ \ | | |/ / / | |/| | | | Update bindep.txt for LaTeX pict2e.sty optional dependency | |||||
| | * | | | Update bindep.txt for LaTeX pict2e.sty optional dependency | Jean-François B | 2022-07-18 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | | | | | | | Refs: #10648 | |||||
* | | | | | Merge branch '5.x' | Adam Turner | 2022-07-18 | 63 | -265/+423 | |
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | | # Conflicts: # sphinx/ext/autodoc/__init__.py # sphinx/writers/html5.py | |||||
| * | | | | Update documentation structure and theming (#10677) | Chris Holdgraf | 2022-07-18 | 11 | -89/+186 | |
| | | | | | | | | | | | | | | | Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com> | |||||
| * | | | | Improve static typing strictness (#10569) | danieleades | 2022-07-18 | 49 | -170/+223 | |
| |/ / / | ||||||
| * | | | Update CHANGES for PR #10655 | Jean-François B | 2022-07-18 | 1 | -0/+1 | |
| | | | | ||||||
| * | | | Merge pull request #10655 from alcrene/fix-LatinRules-encoding | Jean-François B | 2022-07-18 | 1 | -3/+7 | |
| |\ \ \ | | | | | | | | | | | Explain non-standard encoding in LatinRules.xdy | |||||
| | * | | | Fix punctuation in comments | Alexandre René | 2022-07-18 | 1 | -3/+3 | |
| | | | | |