mkdocstrings-python 1.10.5__tar.gz → 1.10.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (239) hide show
  1. mkdocstrings_python-1.10.7/CHANGELOG.md +676 -0
  2. mkdocstrings_python-1.10.7/CODE_OF_CONDUCT.md +133 -0
  3. mkdocstrings_python-1.10.7/CONTRIBUTING.md +149 -0
  4. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/PKG-INFO +2 -2
  5. mkdocstrings_python-1.10.7/config/black.toml +3 -0
  6. mkdocstrings_python-1.10.7/config/coverage.ini +26 -0
  7. mkdocstrings_python-1.10.7/config/git-changelog.toml +9 -0
  8. mkdocstrings_python-1.10.7/config/mypy.ini +7 -0
  9. mkdocstrings_python-1.10.7/config/pytest.ini +17 -0
  10. mkdocstrings_python-1.10.7/config/ruff.toml +84 -0
  11. mkdocstrings_python-1.10.7/config/vscode/launch.json +47 -0
  12. mkdocstrings_python-1.10.7/config/vscode/settings.json +33 -0
  13. mkdocstrings_python-1.10.7/config/vscode/tasks.json +97 -0
  14. mkdocstrings_python-1.10.7/devdeps.txt +32 -0
  15. mkdocstrings_python-1.10.7/docs/.glossary.md +12 -0
  16. mkdocstrings_python-1.10.7/docs/.overrides/main.html +20 -0
  17. mkdocstrings_python-1.10.7/docs/.overrides/partials/comments.html +57 -0
  18. mkdocstrings_python-1.10.7/docs/changelog.md +1 -0
  19. mkdocstrings_python-1.10.7/docs/code_of_conduct.md +1 -0
  20. mkdocstrings_python-1.10.7/docs/contributing.md +1 -0
  21. mkdocstrings_python-1.10.7/docs/credits.md +10 -0
  22. mkdocstrings_python-1.10.7/docs/css/insiders.css +124 -0
  23. mkdocstrings_python-1.10.7/docs/css/material.css +26 -0
  24. mkdocstrings_python-1.10.7/docs/css/mkdocstrings.css +27 -0
  25. mkdocstrings_python-1.10.7/docs/index.md +6 -0
  26. mkdocstrings_python-1.10.7/docs/insiders/changelog.md +51 -0
  27. mkdocstrings_python-1.10.7/docs/insiders/goals.yml +24 -0
  28. mkdocstrings_python-1.10.7/docs/insiders/index.md +242 -0
  29. mkdocstrings_python-1.10.7/docs/insiders/installation.md +88 -0
  30. mkdocstrings_python-1.10.7/docs/js/feedback.js +14 -0
  31. mkdocstrings_python-1.10.7/docs/js/insiders.js +74 -0
  32. mkdocstrings_python-1.10.7/docs/license.md +10 -0
  33. mkdocstrings_python-1.10.7/docs/logo.png +0 -0
  34. mkdocstrings_python-1.10.7/docs/schema.json +316 -0
  35. mkdocstrings_python-1.10.7/docs/usage/configuration/docstrings.md +1115 -0
  36. mkdocstrings_python-1.10.7/docs/usage/configuration/general.md +250 -0
  37. mkdocstrings_python-1.10.7/docs/usage/configuration/headings.md +517 -0
  38. mkdocstrings_python-1.10.7/docs/usage/configuration/members.md +691 -0
  39. mkdocstrings_python-1.10.7/docs/usage/configuration/signatures.md +405 -0
  40. mkdocstrings_python-1.10.7/docs/usage/customization.md +422 -0
  41. mkdocstrings_python-1.10.7/docs/usage/docstrings/google.md +28 -0
  42. mkdocstrings_python-1.10.7/docs/usage/docstrings/numpy.md +11 -0
  43. mkdocstrings_python-1.10.7/docs/usage/docstrings/sphinx.md +6 -0
  44. mkdocstrings_python-1.10.7/docs/usage/extensions.md +17 -0
  45. mkdocstrings_python-1.10.7/docs/usage/index.md +381 -0
  46. mkdocstrings_python-1.10.7/duties.py +224 -0
  47. mkdocstrings_python-1.10.7/mkdocs.yml +209 -0
  48. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/pyproject.toml +14 -2
  49. mkdocstrings_python-1.10.7/scripts/.cache/plugin/git-committers/page-authors.json +1 -0
  50. mkdocstrings_python-1.10.7/scripts/gen_credits.py +179 -0
  51. mkdocstrings_python-1.10.7/scripts/gen_ref_nav.py +37 -0
  52. mkdocstrings_python-1.10.7/scripts/insiders.py +203 -0
  53. mkdocstrings_python-1.10.7/scripts/make +210 -0
  54. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/handler.py +11 -8
  55. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/rendering.py +7 -8
  56. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/attribute.html.jinja +1 -1
  57. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/children.html.jinja +2 -2
  58. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/class.html.jinja +1 -1
  59. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html.jinja +1 -1
  60. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html.jinja +1 -1
  61. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html.jinja +1 -1
  62. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html.jinja +1 -1
  63. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html.jinja +1 -1
  64. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html.jinja +1 -1
  65. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html.jinja +1 -1
  66. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html.jinja +1 -1
  67. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html.jinja +1 -1
  68. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html.jinja +1 -1
  69. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html.jinja +1 -1
  70. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html.jinja +1 -1
  71. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html.jinja +1 -1
  72. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring.html.jinja +1 -1
  73. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/expression.html.jinja +2 -2
  74. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/function.html.jinja +1 -1
  75. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/module.html.jinja +1 -1
  76. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/signature.html.jinja +1 -1
  77. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html.jinja +1 -1
  78. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html.jinja +1 -1
  79. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html.jinja +1 -1
  80. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html.jinja +1 -1
  81. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html.jinja +1 -1
  82. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html.jinja +1 -1
  83. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html.jinja +1 -1
  84. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html.jinja +1 -1
  85. mkdocstrings_python-1.10.7/tests/__init__.py +7 -0
  86. mkdocstrings_python-1.10.7/tests/conftest.py +96 -0
  87. mkdocstrings_python-1.10.7/tests/test_handler.py +174 -0
  88. mkdocstrings_python-1.10.7/tests/test_rendering.py +166 -0
  89. mkdocstrings_python-1.10.7/tests/test_themes.py +46 -0
  90. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/LICENSE +0 -0
  91. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/README.md +0 -0
  92. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/__init__.py +0 -0
  93. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/debug.py +0 -0
  94. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/py.typed +0 -0
  95. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/attribute.html +0 -0
  96. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/children.html +0 -0
  97. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/class.html +0 -0
  98. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html +0 -0
  99. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html +0 -0
  100. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html +0 -0
  101. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html +0 -0
  102. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html +0 -0
  103. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html +0 -0
  104. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html +0 -0
  105. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html +0 -0
  106. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html +0 -0
  107. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html +0 -0
  108. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html +0 -0
  109. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html +0 -0
  110. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html +0 -0
  111. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/docstring.html +0 -0
  112. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/expression.html +0 -0
  113. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/function.html +0 -0
  114. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/labels.html +0 -0
  115. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/labels.html.jinja +0 -0
  116. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/language.html +0 -0
  117. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/language.html.jinja +0 -0
  118. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/languages/en.html +0 -0
  119. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/languages/en.html.jinja +0 -0
  120. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/languages/ja.html +0 -0
  121. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/languages/ja.html.jinja +0 -0
  122. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/languages/zh.html +0 -0
  123. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/languages/zh.html.jinja +0 -0
  124. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/module.html +0 -0
  125. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/signature.html +0 -0
  126. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/summary/attributes.html +0 -0
  127. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/summary/attributes.html.jinja +0 -0
  128. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/summary/classes.html +0 -0
  129. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/summary/classes.html.jinja +0 -0
  130. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/summary/functions.html +0 -0
  131. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/summary/functions.html.jinja +0 -0
  132. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/summary/modules.html +0 -0
  133. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/summary/modules.html.jinja +0 -0
  134. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/summary.html +0 -0
  135. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/_base/summary.html.jinja +0 -0
  136. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/attribute.html +0 -0
  137. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/attribute.html.jinja +0 -0
  138. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/children.html +0 -0
  139. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/children.html.jinja +0 -0
  140. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/class.html +0 -0
  141. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/class.html.jinja +0 -0
  142. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/admonition.html +0 -0
  143. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/admonition.html.jinja +0 -0
  144. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/attributes.html +0 -0
  145. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/attributes.html.jinja +0 -0
  146. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/classes.html +0 -0
  147. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/classes.html.jinja +0 -0
  148. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/examples.html +0 -0
  149. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/examples.html.jinja +0 -0
  150. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/functions.html +0 -0
  151. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/functions.html.jinja +0 -0
  152. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/modules.html +0 -0
  153. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/modules.html.jinja +0 -0
  154. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/other_parameters.html +0 -0
  155. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/other_parameters.html.jinja +0 -0
  156. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/parameters.html +0 -0
  157. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/parameters.html.jinja +0 -0
  158. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/raises.html +0 -0
  159. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/raises.html.jinja +0 -0
  160. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/receives.html +0 -0
  161. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/receives.html.jinja +0 -0
  162. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/returns.html +0 -0
  163. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/returns.html.jinja +0 -0
  164. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/warns.html +0 -0
  165. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/warns.html.jinja +0 -0
  166. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/yields.html +0 -0
  167. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring/yields.html.jinja +0 -0
  168. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring.html +0 -0
  169. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/docstring.html.jinja +0 -0
  170. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/expression.html +0 -0
  171. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/expression.html.jinja +0 -0
  172. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/function.html +0 -0
  173. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/function.html.jinja +0 -0
  174. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/labels.html +0 -0
  175. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/labels.html.jinja +0 -0
  176. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/language.html +0 -0
  177. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/language.html.jinja +0 -0
  178. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/languages/en.html +0 -0
  179. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/languages/en.html.jinja +0 -0
  180. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/languages/ja.html +0 -0
  181. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/languages/ja.html.jinja +0 -0
  182. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/languages/zh.html +0 -0
  183. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/languages/zh.html.jinja +0 -0
  184. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/module.html +0 -0
  185. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/module.html.jinja +0 -0
  186. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/signature.html +0 -0
  187. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/signature.html.jinja +0 -0
  188. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/style.css +0 -0
  189. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/summary/attributes.html +0 -0
  190. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/summary/attributes.html.jinja +0 -0
  191. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/summary/classes.html +0 -0
  192. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/summary/classes.html.jinja +0 -0
  193. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/summary/functions.html +0 -0
  194. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/summary/functions.html.jinja +0 -0
  195. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/summary/modules.html +0 -0
  196. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/summary/modules.html.jinja +0 -0
  197. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/summary.html +0 -0
  198. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/material/summary.html.jinja +0 -0
  199. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html +0 -0
  200. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html +0 -0
  201. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html +0 -0
  202. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html +0 -0
  203. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html +0 -0
  204. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html +0 -0
  205. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html +0 -0
  206. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html +0 -0
  207. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/language.html +0 -0
  208. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/language.html.jinja +0 -0
  209. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/en.html +0 -0
  210. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/en.html.jinja +0 -0
  211. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/ja.html +0 -0
  212. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/ja.html.jinja +0 -0
  213. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/zh.html +0 -0
  214. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/zh.html.jinja +0 -0
  215. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html +0 -0
  216. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html.jinja +0 -0
  217. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html +0 -0
  218. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html.jinja +0 -0
  219. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html +0 -0
  220. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html.jinja +0 -0
  221. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/raises.html +0 -0
  222. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/raises.html.jinja +0 -0
  223. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html +0 -0
  224. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html.jinja +0 -0
  225. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html +0 -0
  226. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html.jinja +0 -0
  227. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/warns.html +0 -0
  228. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/warns.html.jinja +0 -0
  229. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html +0 -0
  230. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html.jinja +0 -0
  231. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/language.html +0 -0
  232. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/language.html.jinja +0 -0
  233. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/en.html +0 -0
  234. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/en.html.jinja +0 -0
  235. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html +0 -0
  236. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html.jinja +0 -0
  237. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html +0 -0
  238. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html.jinja +0 -0
  239. {mkdocstrings_python-1.10.5 → mkdocstrings_python-1.10.7}/src/mkdocstrings_handlers/python/templates/readthedocs/style.css +0 -0
@@ -0,0 +1,676 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
+ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
+
7
+ <!-- insertion marker -->
8
+ ## [1.10.7](https://github.com/mkdocstrings/python/releases/tag/1.10.7) - 2024-07-25
9
+
10
+ <small>[Compare with 1.10.6](https://github.com/mkdocstrings/python/compare/1.10.6...1.10.7)</small>
11
+
12
+ ### Packaging
13
+
14
+ - Include tests and all relevant files for downstream packaging in source distribution
15
+
16
+ ## [1.10.6](https://github.com/mkdocstrings/python/releases/tag/1.10.6) - 2024-07-25
17
+
18
+ <small>[Compare with 1.10.5](https://github.com/mkdocstrings/python/compare/1.10.5...1.10.6)</small>
19
+
20
+ ### Bug Fixes
21
+
22
+ - Fix condition to display members (check all members, not just non-inherited ones) ([3d838a9](https://github.com/mkdocstrings/python/commit/3d838a96f77fa128cd6f2afa5ed0cb151ab225fd) by Timothée Mazzucotelli).
23
+
24
+ ### Code Refactoring
25
+
26
+ - Update code for Griffe 0.48 (removing deprecation warnings) ([eff10cc](https://github.com/mkdocstrings/python/commit/eff10ccf0fa1b2e73df912048a15c2d6406a2c8b) by Timothée Mazzucotelli). [Issue-173](https://github.com/mkdocstrings/python/issues/173)
27
+
28
+ ## [1.10.5](https://github.com/mkdocstrings/python/releases/tag/1.10.5) - 2024-06-19
29
+
30
+ <small>[Compare with 1.10.4](https://github.com/mkdocstrings/python/compare/1.10.4...1.10.5)</small>
31
+
32
+ ### Bug Fixes
33
+
34
+ - Mix both previous checks for displaying objects: not imported or public ([587963b](https://github.com/mkdocstrings/python/commit/587963ba53f765c9d7eefbc2fb80bdbb11164850) by Timothée Mazzucotelli). [Issue-294](https://github.com/mkdocstrings/griffe/issues/294)
35
+
36
+ ## [1.10.4](https://github.com/mkdocstrings/python/releases/tag/1.10.4) - 2024-06-18
37
+
38
+ <small>[Compare with 1.10.3](https://github.com/mkdocstrings/python/compare/1.10.3...1.10.4)</small>
39
+
40
+ ### Code Refactoring
41
+
42
+ - Only filter out imported objects instead of non-public ones after applying filters ([e2f4b35](https://github.com/mkdocstrings/python/commit/e2f4b35d29eca6f68afbd2e728ef7542a2abc992) by Timothée Mazzucotelli). [Issue-mkdocstrings/griffe-294](https://github.com/mkdocstrings/griffe/issues/294)
43
+ - Update code for Griffe 0.46 to avoid deprecation warnings ([321b407](https://github.com/mkdocstrings/python/commit/321b407eb95195c44f3cf34d780784e0d6751998) by Timothée Mazzucotelli).
44
+ - Change `load_external_modules` default value to `None` to support new default mode in Griffe ([ae5896c](https://github.com/mkdocstrings/python/commit/ae5896c1604e9089162d0d63ec97a510a6bcef89) by Timothée Mazzucotelli).
45
+
46
+ ## [1.10.3](https://github.com/mkdocstrings/python/releases/tag/1.10.3) - 2024-05-22
47
+
48
+ <small>[Compare with 1.10.2](https://github.com/mkdocstrings/python/compare/1.10.2...1.10.3)</small>
49
+
50
+ ### Bug Fixes
51
+
52
+ - Don't crash when rendering the source of an object whose lineno is none ([64df00b](https://github.com/mkdocstrings/python/commit/64df00b9b757e9642d65cf425d32f5a2e0d75f38) by Timothée Mazzucotelli). [Issue-163](https://github.com/mkdocstrings/python/issues/163)
53
+
54
+ ## [1.10.2](https://github.com/mkdocstrings/python/releases/tag/1.10.2) - 2024-05-16
55
+
56
+ <small>[Compare with 1.10.1](https://github.com/mkdocstrings/python/compare/1.10.1...1.10.2)</small>
57
+
58
+ ### Bug Fixes
59
+
60
+ - Actually make use of custom .html.jinja templates ([5668abb](https://github.com/mkdocstrings/python/commit/5668abba15b13b86fe67f70f6b4004b7b1feeb4f) by Timothée Mazzucotelli).
61
+
62
+ ## [1.10.1](https://github.com/mkdocstrings/python/releases/tag/1.10.1) - 2024-05-14
63
+
64
+ <small>[Compare with 1.10.0](https://github.com/mkdocstrings/python/compare/1.10.0...1.10.1)</small>
65
+
66
+ ### Build
67
+
68
+ - Depend on mkdocstrings 0.25 which adds support for parameter `once` when logging messages ([2bc156b](https://github.com/mkdocstrings/python/commit/2bc156bd6f231ae13066651f4490d1e9c2ce3ca2) by Timothée Mazzucotelli).
69
+
70
+ ### Code Refactoring
71
+
72
+ - Set handler's name ([a71ab12](https://github.com/mkdocstrings/python/commit/a71ab12c8e52efe76e5c0a5e54065926a47cc0d2) by Timothée Mazzucotelli).
73
+ - Update `*.html` top-level templates to extend the `*.html.jinja` base templates ([a8c540e](https://github.com/mkdocstrings/python/commit/a8c540e95693e8500da884c32ad159b3bbaaa7ba) by Timothée Mazzucotelli). [Issue-151](https://github.com/mkdocstrings/python/issues/151)
74
+ - Update `*.html` base templates to extend their `*.html.jinja` counterpart, while overriding the `logs` block to issue a logging message (info) stating that extending `*.html` templates is deprecated ([e6f1b9c](https://github.com/mkdocstrings/python/commit/e6f1b9caf13754eca9dbb2f112727bef50876ed7) by Timothée Mazzucotelli). [Issue-151](https://github.com/mkdocstrings/python/issues/151)
75
+ - Add `*.html.jinja` top-level (overridable) templates, extending their base counterpart ([7c14924](https://github.com/mkdocstrings/python/commit/7c14924c406d7b5f4f1c22d03019d4c566018d2d) by Timothée Mazzucotelli). [Issue-151](https://github.com/mkdocstrings/python/issues/151)
76
+ - Add `*.html.jinja` base templates, which are copies of `*.html` templates, with an additional `logs` block, and using the updated `get_template` filter ([eced9a5](https://github.com/mkdocstrings/python/commit/eced9a54fc8a559b686cb1b1180a0d2e04ba452d) by Timothée Mazzucotelli). [Issue-151](https://github.com/mkdocstrings/python/issues/151)
77
+ - Update `get_template` filter to support both `*.html` and `*.html.jinja` templates, logging a message (info) when `*.html` templates are overridden by users ([3546fd7](https://github.com/mkdocstrings/python/commit/3546fd70b2d4e45f77b166b2e67c333acc8af0d2) by Timothée Mazzucotelli). [Issue-151](https://github.com/mkdocstrings/python/issues/151)
78
+ - Log a warning when base templates are overridden ([26e3d66](https://github.com/mkdocstrings/python/commit/26e3d66f5334a5aaff75bda030afe6dfa1cc94d7) by Timothée Mazzucotelli). [Issue-151](https://github.com/mkdocstrings/python/issues/151)
79
+
80
+ ## [1.10.0](https://github.com/mkdocstrings/python/releases/tag/1.10.0) - 2024-04-19
81
+
82
+ <small>[Compare with 1.9.2](https://github.com/mkdocstrings/python/compare/1.9.2...1.10.0)</small>
83
+
84
+ ### Features
85
+
86
+ - Add CSS classes `doc-section-title` and `doc-section-item` in docstring sections ([d6e1d68](https://github.com/mkdocstrings/python/commit/d6e1d68c099e61c3bd6d93e583708335d84158f5) by Timothée Mazzucotelli). [Issue-17](https://github.com/mkdocstrings/python/issues/17)
87
+
88
+ ### Bug Fixes
89
+
90
+ - Render enumeration instance name instead of just "value", allowing proper cross-reference ([11d81d8](https://github.com/mkdocstrings/python/commit/11d81d8e056b7c074eb3a1c47606867156a338fa) by Timothée Mazzucotelli). [Issue-124](https://github.com/mkdocstrings/python/issues/124)
91
+
92
+ ## [1.9.2](https://github.com/mkdocstrings/python/releases/tag/1.9.2) - 2024-04-02
93
+
94
+ <small>[Compare with 1.9.1](https://github.com/mkdocstrings/python/compare/1.9.1...1.9.2)</small>
95
+
96
+ ### Dependencies
97
+
98
+ - Remove cap on Python-Markdown 3.6 now that ToC labels are fixed by mkdocstrings ([0c1e2c1](https://github.com/mkdocstrings/python/commit/0c1e2c15b2497d99974cbb9bd68f25056bb8451b) by Timothée Mazzucotelli).
99
+
100
+ ## [1.9.1](https://github.com/mkdocstrings/python/releases/tag/1.9.1) - 2024-04-02
101
+
102
+ <small>[Compare with 1.9.0](https://github.com/mkdocstrings/python/compare/1.9.0...1.9.1)</small>
103
+
104
+ ### Bug Fixes
105
+
106
+ - Don't try loading packages from relative paths ([bd73497](https://github.com/mkdocstrings/python/commit/bd7349714059afb1295e743dbc82380fa797a032) by Timothée Mazzucotelli). [Issue-145](https://github.com/mkdocstrings/python/issues/145)
107
+
108
+ ### Code Refactoring
109
+
110
+ - Allow first name in a separate signature to be highlighted as a function name ([f798a1e](https://github.com/mkdocstrings/python/commit/f798a1e19dbac548420dcbe1172e9a49232b615b) by Timothée Mazzucotelli).
111
+ - Maintain original Pygments color for cross-refs in signatures ([7c8b885](https://github.com/mkdocstrings/python/commit/7c8b885fa2b704e719016acb35791723ea3a496a) by Timothée Mazzucotelli).
112
+
113
+ ## [1.9.0](https://github.com/mkdocstrings/python/releases/tag/1.9.0) - 2024-03-13
114
+
115
+ <small>[Compare with 1.8.0](https://github.com/mkdocstrings/python/compare/1.8.0...1.9.0)</small>
116
+
117
+ ### Dependencies
118
+
119
+ - Add upper bound on Python-Markdown 3.6 to temporarily prevent breaking changes ([cd93ee3](https://github.com/mkdocstrings/python/commit/cd93ee31418a2752667d43bb5a05d22284522c24) by Timothée Mazzucotelli).
120
+
121
+ ### Features
122
+
123
+ - Add `show_labels` option to show/hide labels ([eaf9b82](https://github.com/mkdocstrings/python/commit/eaf9b8240069f7369f401fe048892043c8b173d3) by Viicos). [Issue #120](https://github.com/mkdocstrings/python/issues/120), [PR #130](https://github.com/mkdocstrings/python/pull/130)
124
+ - Add option to search for stubs packages ([0c6aa32](https://github.com/mkdocstrings/python/commit/0c6aa323c9e57b8348765a5daa11c79d0c5edb07) by Romain). [PR #128](https://github.com/mkdocstrings/python/pull/128), PR griffe#221: : https://github.com/mkdocstrings/griffe/pull/221
125
+
126
+ ### Code Refactoring
127
+
128
+ - Mark all Jinja blocks as scoped ([548bdad](https://github.com/mkdocstrings/python/commit/548bdaddd66ffc99b3b9a5a62228a2ff4ff0dd00) by Timothée Mazzucotelli).
129
+
130
+ ## [1.8.0](https://github.com/mkdocstrings/python/releases/tag/1.8.0) - 2024-01-08
131
+
132
+ <small>[Compare with 1.7.5](https://github.com/mkdocstrings/python/compare/1.7.5...1.8.0)</small>
133
+
134
+ ### Features
135
+
136
+ - Release Insiders features of the $500/month funding goal ([bd30106](https://github.com/mkdocstrings/python/commit/bd301061fe9c647f9b91c2c9b4baa784c304eca7) by Timothée Mazzucotelli).
137
+ The features and projects related to *mkdocstrings-python* are:
138
+
139
+ - [Cross-references for type annotations in signatures](https://mkdocstrings.github.io/python/usage/configuration/signatures/#signature_crossrefs)
140
+ - [Symbol types in headings and table of contents](https://mkdocstrings.github.io/python/usage/configuration/headings/#show_symbol_type_toc)
141
+ - [`griffe-inherited-docstrings`](https://mkdocstrings.github.io/griffe-inherited-docstrings/), a Griffe extension for inheriting docstrings
142
+ - [`griffe2md`](https://mkdocstrings.github.io/griffe2md/), a tool to output API docs to Markdown using Griffe
143
+
144
+ See the complete list of features and projects here:
145
+ https://pawamoy.github.io/insiders/#500-plasmavac-user-guide.
146
+
147
+ ## [1.7.5](https://github.com/mkdocstrings/python/releases/tag/1.7.5) - 2023-11-21
148
+
149
+ <small>[Compare with 1.7.4](https://github.com/mkdocstrings/python/compare/1.7.4...1.7.5)</small>
150
+
151
+ ### Bug Fixes
152
+
153
+ - Add missing translations (fallback theme) for ReadTheDocs ([2fb6513](https://github.com/mkdocstrings/python/commit/2fb651304d0a80fa9d6a8c77c16b3004bda22972) by Timothée Mazzucotelli). [Issue #115](https://github.com/mkdocstrings/python/issues/115)
154
+
155
+ ## [1.7.4](https://github.com/mkdocstrings/python/releases/tag/1.7.4) - 2023-11-12
156
+
157
+ <small>[Compare with 1.7.3](https://github.com/mkdocstrings/python/compare/1.7.3...1.7.4)</small>
158
+
159
+ ### Bug Fixes
160
+
161
+ - Make extension paths relative to config file ([5035e92](https://github.com/mkdocstrings/python/commit/5035e9269fe11664fd25e438ac8f746721b3de0a) by Waylan Limberg). [PR #112](https://github.com/mkdocstrings/python/pull/112), Co-authored-by: Timothée Mazzucotelli <pawamoy@pm.me>
162
+
163
+ ### Code Refactoring
164
+
165
+ - Prepare for Griffe 0.37 ([b5bb8a9](https://github.com/mkdocstrings/python/commit/b5bb8a982e7a2ec97c73335e453d0033bf4987b6) by Timothée Mazzucotelli).
166
+
167
+ ## [1.7.3](https://github.com/mkdocstrings/python/releases/tag/1.7.3) - 2023-10-09
168
+
169
+ <small>[Compare with 1.7.2](https://github.com/mkdocstrings/python/compare/1.7.2...1.7.3)</small>
170
+
171
+ ### Bug Fixes
172
+
173
+ - Don't deepcopy the local config ([1300d2c](https://github.com/mkdocstrings/python/commit/1300d2c77dd49f5dea459ad844d72edcc856c4cd) by Timothée Mazzucotelli).
174
+
175
+ ## [1.7.2](https://github.com/mkdocstrings/python/releases/tag/1.7.2) - 2023-10-05
176
+
177
+ <small>[Compare with 1.7.1](https://github.com/mkdocstrings/python/compare/1.7.1...1.7.2)</small>
178
+
179
+ ### Bug Fixes
180
+
181
+ - Prevent alias resolution error when source-ordering members ([67df10c](https://github.com/mkdocstrings/python/commit/67df10cbb86225e1e3efc251325cbff883a1ef3c) by Timothée Mazzucotelli). [Issue griffe#213](https://github.com/mkdocstrings/griffe/issues/213)
182
+
183
+ ### Code Refactoring
184
+
185
+ - Use package relative filepath if filepath is not relative ([aa5a3f7](https://github.com/mkdocstrings/python/commit/aa5a3f7b0928498ba9da10ed1211d1e55b7f6c4b) by Timothée Mazzucotelli). [Discussion mkdocstrings#622](https://github.com/mkdocstrings/mkdocstrings/discussions/622)
186
+
187
+ ## [1.7.1](https://github.com/mkdocstrings/python/releases/tag/1.7.1) - 2023-09-28
188
+
189
+ <small>[Compare with 1.7.0](https://github.com/mkdocstrings/python/compare/1.7.0...1.7.1)</small>
190
+
191
+ ### Bug Fixes
192
+
193
+ - Stop propagation of annotation to next parameter in signature template ([3a760ac](https://github.com/mkdocstrings/python/commit/3a760acacfabaef5abc658ee579e1c205e674994) by Timothée Mazzucotelli). [Issue #110](https://github.com/mkdocstrings/python/issues/110)
194
+
195
+ ### Code Refactoring
196
+
197
+ - Look into inherited members for `__init__` methods when merging docstrings ([b97d51f](https://github.com/mkdocstrings/python/commit/b97d51f67c2ee3d1edfe6975274ead50fcb3fa8f) by Timothée Mazzucotelli). [Issue #106](https://github.com/mkdocstrings/python/issues/106)
198
+
199
+ ## [1.7.0](https://github.com/mkdocstrings/python/releases/tag/1.7.0) - 2023-09-14
200
+
201
+ <small>[Compare with 1.6.3](https://github.com/mkdocstrings/python/compare/1.6.3...1.7.0)</small>
202
+
203
+ ### Features
204
+
205
+ - Add option to unwrap `Annotated` types ([53db04b](https://github.com/mkdocstrings/python/commit/53db04b6256db960aebc2a9f91129b82ca222e41) by Timothée Mazzucotelli).
206
+
207
+ ## [1.6.3](https://github.com/mkdocstrings/python/releases/tag/1.6.3) - 2023-09-11
208
+
209
+ <small>[Compare with 1.6.2](https://github.com/mkdocstrings/python/compare/1.6.2...1.6.3)</small>
210
+
211
+ ### Bug Fixes
212
+
213
+ - Make `load_external_modules` a global-only option ([266f41f](https://github.com/mkdocstrings/python/commit/266f41f2033e034060001bc2bed376b4f3a8d7b8) by Timothée Mazzucotelli). [Issue #87](https://github.com/mkdocstrings/python/issues/87)
214
+ - Never fail when trying to format code with Black ([df24bbc](https://github.com/mkdocstrings/python/commit/df24bbc640886e1da2d00a3b58c1aa7736cb1eeb) by Timothée Mazzucotelli).
215
+
216
+ ### Code Refactoring
217
+
218
+ - Wrap docstring section elements (list style) in code tags to prevent spell checker errors ([1ae8dd8](https://github.com/mkdocstrings/python/commit/1ae8dd89cddd67c09d7d30c59b9013516cea2924) by Timothée Mazzucotelli).
219
+
220
+ ## [1.6.2](https://github.com/mkdocstrings/python/releases/tag/1.6.2) - 2023-09-05
221
+
222
+ <small>[Compare with 1.6.1](https://github.com/mkdocstrings/python/compare/1.6.1...1.6.2)</small>
223
+
224
+ ### Bug Fixes
225
+
226
+ - Don't render cross-ref spans when they're not enabled ([eed51ee](https://github.com/mkdocstrings/python/commit/eed51ee14bd973a08395f95377f9bd4cd38febfc) by Timothée Mazzucotelli).
227
+
228
+ ## [1.6.1](https://github.com/mkdocstrings/python/releases/tag/1.6.1) - 2023-09-04
229
+
230
+ <small>[Compare with 1.6.0](https://github.com/mkdocstrings/python/compare/1.6.0...1.6.1)</small>
231
+
232
+ ### Bug Fixes
233
+
234
+ - Fix spacing for rendered named items in Yields, Receives and Returns sections (list style) ([e12688e](https://github.com/mkdocstrings/python/commit/e12688ecb7d868047f794300eb2638d052563e68) by Timothée Mazzucotelli).
235
+ - Fix rendering Receives sections as lists ([9ff7e68](https://github.com/mkdocstrings/python/commit/9ff7e68b58e2ab0829c73e4e62254325a4f766ac) by Timothée Mazzucotelli).
236
+
237
+ ## [1.6.0](https://github.com/mkdocstrings/python/releases/tag/1.6.0) - 2023-08-27
238
+
239
+ <small>[Compare with 1.5.2](https://github.com/mkdocstrings/python/compare/1.5.2...1.6.0)</small>
240
+
241
+ ### Features
242
+
243
+ - Add `doc-signature` CSS class to separate signature code blocks ([b6c648f](https://github.com/mkdocstrings/python/commit/b6c648f554f2e0dce609afc2a2c1a3b27a4fbeba) by Timothée Mazzucotelli).
244
+
245
+ ### Code Refactoring
246
+
247
+ - Add a `format_attribute` filter, preparing for cross-refs in attribute signatures ([8f0ade2](https://github.com/mkdocstrings/python/commit/8f0ade249638ee2f2d446f083c70b6c30799875a) by Timothée Mazzucotelli).
248
+
249
+ ## [1.5.2](https://github.com/mkdocstrings/python/releases/tag/1.5.2) - 2023-08-25
250
+
251
+ <small>[Compare with 1.5.1](https://github.com/mkdocstrings/python/compare/1.5.1...1.5.2)</small>
252
+
253
+ ### Bug Fixes
254
+
255
+ - Regression in children template: fix condition for when members are specified ([beeebff](https://github.com/mkdocstrings/python/commit/beeebffa36288d1f71d122f78ecd9064b41a75d0) by Timothée Mazzucotelli). [Issue #100](https://github.com/mkdocstrings/python/issues/100)
256
+ - Prevent whitespace removal before highlight filter ([c6f36c0](https://github.com/mkdocstrings/python/commit/c6f36c0c9e5141800f8c5c988c9b67720fccccb8) by Timothée Mazzucotelli).
257
+
258
+ ### Code Refactoring
259
+
260
+ - Never show full object path in ToC entry ([9aa758b](https://github.com/mkdocstrings/python/commit/9aa758bcc42dfcf7c416d87b8f7cd407b7fdf148) by Timothée Mazzucotelli).
261
+ - Sync templates with insiders, remove useless lines ([38b317f](https://github.com/mkdocstrings/python/commit/38b317f4fc74b583a4788721a5559c51a5a47d86) by Timothée Mazzucotelli).
262
+
263
+ ## [1.5.1](https://github.com/mkdocstrings/python/releases/tag/1.5.1) - 2023-08-24
264
+
265
+ <small>[Compare with 1.5.0](https://github.com/mkdocstrings/python/compare/1.5.0...1.5.1)</small>
266
+
267
+ ### Code Refactoring
268
+
269
+ - Never show full path in separate signature since it would appear in the heading already ([9e02049](https://github.com/mkdocstrings/python/commit/9e0204930cf4dc973ba8eb41c471fc0132e1631f) by Timothée Mazzucotelli).
270
+ - Improve guessing whether an object is public ([35eb811](https://github.com/mkdocstrings/python/commit/35eb81162582d794f170cd7e8c68f10ecfd8ff9d) by Timothée Mazzucotelli).
271
+ - Always sort modules alphabetically as source order wouldn't make sense ([70c81ce](https://github.com/mkdocstrings/python/commit/70c81cebb62366cbfc6124bc84d1563db176afb6) by Timothée Mazzucotelli).
272
+ - Return anchors as a tuple, not a set, to preserve order ([736a2b5](https://github.com/mkdocstrings/python/commit/736a2b5e729d25bb184db8d42f2ad01025a5bc58) by Timothée Mazzucotelli). [Related-to #mkdocstrings/crystal#6](https://github.com/mkdocstrings/crystal/pull/6)
273
+
274
+ ## [1.5.0](https://github.com/mkdocstrings/python/releases/tag/1.5.0) - 2023-08-20
275
+
276
+ <small>[Compare with 1.4.0](https://github.com/mkdocstrings/python/compare/1.4.0...1.5.0)</small>
277
+
278
+ ### Features
279
+
280
+ - Add support for new Griffe docstring sections: modules, classes, and functions (methods) ([d5337af](https://github.com/mkdocstrings/python/commit/d5337afdf68fc492b34f749aa69d1da33b49f9c2) by Timothée Mazzucotelli).
281
+
282
+ ## [1.4.0](https://github.com/mkdocstrings/python/releases/tag/1.4.0) - 2023-08-18
283
+
284
+ <small>[Compare with 1.3.0](https://github.com/mkdocstrings/python/compare/1.3.0...1.4.0)</small>
285
+
286
+ ### Features
287
+
288
+ - Support new Griffe expressions (in v0.33) ([9b8e1b1](https://github.com/mkdocstrings/python/commit/9b8e1b1604b978cf2d89b7abf826cf4407f92394) by Timothée Mazzucotelli).
289
+
290
+ ### Code Refactoring
291
+
292
+ - Deprecate `crossref` and `multi_crossref` filters ([4fe3d20](https://github.com/mkdocstrings/python/commit/4fe3d2051047061780e20683da6513a7c8d91829) by Timothée Mazzucotelli).
293
+
294
+ ## [1.3.0](https://github.com/mkdocstrings/python/releases/tag/1.3.0) - 2023-08-06
295
+
296
+ <small>[Compare with 1.2.1](https://github.com/mkdocstrings/python/compare/1.2.1...1.3.0)</small>
297
+
298
+ ### Dependencies
299
+
300
+ - Set upper bound on Griffe (0.33) ([ad8c2a3](https://github.com/mkdocstrings/python/commit/ad8c2a3ac8daf0b0c06579b6ba667e05feffa247) by Timothée Mazzucotelli). See https://github.com/mkdocstrings/griffe/discussions/195.
301
+
302
+ ### Features
303
+
304
+ - Show parameter default values within the "list" section style too ([55f08f3](https://github.com/mkdocstrings/python/commit/55f08f3e2cece815dd79d35c82515ba8003ec64c) by Antoine Dechaume). [PR #92](https://github.com/mkdocstrings/python/pull/92), Co-authored-by: Timothée Mazzucotelli <pawamoy@pm.me>
305
+
306
+ ## [1.2.1](https://github.com/mkdocstrings/python/releases/tag/1.2.1) - 2023-07-20
307
+
308
+ <small>[Compare with 1.2.0](https://github.com/mkdocstrings/python/compare/1.2.0...1.2.1)</small>
309
+
310
+ ### Bug Fixes
311
+
312
+ - Fix members ordering when members are specified with a boolean ([c69f9c3](https://github.com/mkdocstrings/python/commit/c69f9c3b3ddde915619eded6620f7ddada977b00) by Timothée Mazzucotelli). [Issue #89](https://github.com/mkdocstrings/python/issues/89)
313
+
314
+ ## [1.2.0](https://github.com/mkdocstrings/python/releases/tag/1.2.0) - 2023-07-14
315
+
316
+ <small>[Compare with 1.1.2](https://github.com/mkdocstrings/python/compare/1.1.2...1.2.0)</small>
317
+
318
+ ### Features
319
+
320
+ - Add Jinja blocks to module, class, function and attribute templates ([299fe48](https://github.com/mkdocstrings/python/commit/299fe483cc03ba76df29b843f88467f89db6dc72) by Timothée Mazzucotelli).
321
+ - Setup infrastructure for I18N, add translations for simplified chinese and japanese ([b053b29](https://github.com/mkdocstrings/python/commit/b053b2900ef5c0069b68ad19bda9aaa98141a525) by Nyuan Zhang). [PR #77](https://github.com/mkdocstrings/python/pull/77)
322
+ - Support inheritance ([ae42356](https://github.com/mkdocstrings/python/commit/ae4235689155a4b4f0c1e74b0014a466c6b1181f) by Timothée Mazzucotelli). [Issue mkdocstrings#157](https://github.com/mkdocstrings/mkdocstrings/issues/157), [Discussion mkdocstrings#536](https://github.com/mkdocstrings/mkdocstrings/discussions/536)
323
+
324
+ ### Bug Fixes
325
+
326
+ - Don't show `None` as return annotation of class signatures ([3d8724e](https://github.com/mkdocstrings/python/commit/3d8724ed1f4d040d7a3d9d02784cf0d1f80445b2) by Timothée Mazzucotelli). [Issue #85](https://github.com/mkdocstrings/python/issues/85)
327
+ - Show labels in deterministic order ([02619a8](https://github.com/mkdocstrings/python/commit/02619a85ee4aab25f3241d983bdfff0534dd3f81) by Oleh Prypin).
328
+
329
+ ## [1.1.2](https://github.com/mkdocstrings/python/releases/tag/1.1.2) - 2023-06-04
330
+
331
+ <small>[Compare with 1.1.1](https://github.com/mkdocstrings/python/compare/1.1.1...1.1.2)</small>
332
+
333
+ ### Code Refactoring
334
+
335
+ - Keep headings style consistent (CSS) ([92032e5](https://github.com/mkdocstrings/python/commit/92032e561861c3fc4e3fb0c6882bb076d0e6614d) by Timothée Mazzucotelli).
336
+
337
+ ## [1.1.1](https://github.com/mkdocstrings/python/releases/tag/1.1.1) - 2023-06-04
338
+
339
+ <small>[Compare with 1.1.0](https://github.com/mkdocstrings/python/compare/1.1.0...1.1.1)</small>
340
+
341
+ ### Bug Fixes
342
+
343
+ - Fix mkdocs and readthedocs themes support ([14f18b2](https://github.com/mkdocstrings/python/commit/14f18b219f67f9b6d154d4a52051d8d7d7c49348) by Timothée Mazzucotelli).
344
+
345
+ ### Code Refactoring
346
+
347
+ - Improve display of paragraphs in docstring sections ([439f5e6](https://github.com/mkdocstrings/python/commit/439f5e6984fe94c28324ca57fbd1a52ef8f55b62) by Timothée Mazzucotelli).
348
+
349
+ ## [1.1.0](https://github.com/mkdocstrings/python/releases/tag/1.1.0) - 2023-05-25
350
+
351
+ <small>[Compare with 1.0.0](https://github.com/mkdocstrings/python/compare/1.0.0...1.1.0)</small>
352
+
353
+ ### Features
354
+
355
+ - Support custom templates through objects' extra data ([8ff2b06](https://github.com/mkdocstrings/python/commit/8ff2b06295e848b9c84867802eb845adf061dc10) by Timothée Mazzucotelli). [PR #70](https://github.com/mkdocstrings/python/pull/70)
356
+
357
+ ## [1.0.0](https://github.com/mkdocstrings/python/releases/tag/1.0.0) - 2023-05-11
358
+
359
+ <small>[Compare with 0.10.1](https://github.com/mkdocstrings/python/compare/0.10.1...1.0.0)</small>
360
+
361
+ ### Breaking changes
362
+
363
+ - The signature of the [`format_signature` filter](https://mkdocstrings.github.io/python/reference/mkdocstrings_handlers/python/rendering/#mkdocstrings_handlers.python.rendering.do_format_signature) has changed.
364
+ If you override templates in your project to customize the output,
365
+ make sure to update the following templates so that they use
366
+ the new filter signature:
367
+
368
+ - `class.html`
369
+ - `expression.html`
370
+ - `function.html`
371
+ - `signature.html`
372
+
373
+ You can see how to use the filter in this commit's changes:
374
+ [f686f4e4](https://github.com/mkdocstrings/python/commit/f686f4e4599cea64686d4ef4863b507dd096a513).
375
+
376
+ **We take this as an opportunity to go out of beta and bump the version to 1.0.0.
377
+ This will allow users to rely on semantic versioning.**
378
+
379
+ ### Bug Fixes
380
+
381
+ - Bring compatibility with insiders signature crossrefs feature ([f686f4e](https://github.com/mkdocstrings/python/commit/f686f4e4599cea64686d4ef4863b507dd096a513) by Timothée Mazzucotelli).
382
+
383
+ ## [0.10.1](https://github.com/mkdocstrings/python/releases/tag/0.10.1) - 2023-05-07
384
+
385
+ <small>[Compare with 0.10.0](https://github.com/mkdocstrings/python/compare/0.10.0...0.10.1)</small>
386
+
387
+ ### Bug Fixes
388
+
389
+ - Format signatures with full-path names ([685512d](https://github.com/mkdocstrings/python/commit/685512decf1a14c53fa6ca82048e65619aa6a463) by Timothée Mazzucotelli).
390
+
391
+ ## [0.10.0](https://github.com/mkdocstrings/python/releases/tag/0.10.0) - 2023-05-07
392
+
393
+ <small>[Compare with 0.9.0](https://github.com/mkdocstrings/python/compare/0.9.0...0.10.0)</small>
394
+
395
+ ### Features
396
+
397
+ - Add option to disallow inspection ([40f2f26](https://github.com/mkdocstrings/python/commit/40f2f268876358941cf8221d01d219a0deb9de38) by Nyuan Zhang). [Issue #68](https://github.com/mkdocstrings/python/issues/68), [PR #69](https://github.com/mkdocstrings/python/pull/69)
398
+
399
+ ### Bug Fixes
400
+
401
+ - Make admonitions open by default ([79cd153](https://github.com/mkdocstrings/python/commit/79cd153cfceec860f6ce08d30817c21031983238) by Timothée Mazzucotelli). [Issue #22](https://github.com/mkdocstrings/python/issues/22)
402
+
403
+ ### Code Refactoring
404
+
405
+ - Match documented behavior for filtering (all members, list, none) ([c7f70c3](https://github.com/mkdocstrings/python/commit/c7f70c353c3dd2b82e1f34c70cd433e0bab4f6e6) by Timothée Mazzucotelli).
406
+ - Switch to an info level log for when black's not installed ([f593bb0](https://github.com/mkdocstrings/python/commit/f593bb06c63860be14d2025c4bd795e0c8976ce0) by Faster Speeding).
407
+ - Return anchors as a set ([e2b820c](https://github.com/mkdocstrings/python/commit/e2b820c5af3787518656d5f7f799ecb6b55aa033) by Timothée Mazzucotelli).
408
+
409
+ ## [0.9.0](https://github.com/mkdocstrings/python/releases/tag/0.9.0) - 2023-04-03
410
+
411
+ <small>[Compare with 0.8.3](https://github.com/mkdocstrings/python/compare/0.8.3...0.9.0)</small>
412
+
413
+ ### Features
414
+
415
+ - Allow resolving alias to external modules ([02052e2](https://github.com/mkdocstrings/python/commit/02052e248b125a113ab788faa9a075adbdc92ca6) by Gilad). [PR #61](https://github.com/mkdocstrings/python/pull/61), [Follow-up of PR #60](https://github.com/mkdocstrings/python/pull/60)
416
+ - Allow pre-loading modules ([36002cb](https://github.com/mkdocstrings/python/commit/36002cb9c89fba35d23afb07a866dd8c6877f742) by Gilad). [Issue mkdocstrings/mkdocstrings#503](https://github.com/mkdocstrings/mkdocstrings/issues/503), [PR #60](https://github.com/mkdocstrings/python/pull/60)
417
+ - Add show options for docstrings ([a6c55fb](https://github.com/mkdocstrings/python/commit/a6c55fb52f362dd49b1a7e334a631f6ea3b1b963) by Jeremy Goh). [Issue mkdocstrings/mkdocstrings#466](https://github.com/mkdocstrings/mkdocstrings/issues/466), [PR #56](https://github.com/mkdocstrings/python/pull/56)
418
+ - Allow custom list of domains for inventories ([f5ea6fd](https://github.com/mkdocstrings/python/commit/f5ea6fd81f7a531e8a97bb0e48267188d72936c1) by Sorin Sbarnea). [Issue mkdocstrings/mkdocstrings#510](https://github.com/mkdocstrings/mkdocstrings/issues/510), [PR #49](https://github.com/mkdocstrings/python/pull/49)
419
+
420
+ ### Bug Fixes
421
+
422
+ - Prevent alias resolution error when searching for anchors ([a190e2c](https://github.com/mkdocstrings/python/commit/a190e2c4a752e74a05ad03702837a0914c198742) by Timothée Mazzucotelli). [Issue #64](https://github.com/mkdocstrings/python/issues/64)
423
+
424
+ ### Code Refactoring
425
+
426
+ - Support Griffe 0.26 ([075735c](https://github.com/mkdocstrings/python/commit/075735ce8d86921fbf092d7ad1d009bbb3a2e0bb) by Timothée Mazzucotelli).
427
+ - Log (debug) unresolved aliases ([9164742](https://github.com/mkdocstrings/python/commit/9164742f87362e8241dea11bec0fd96f6b9d9dda) by Timothée Mazzucotelli).
428
+
429
+ ## [0.8.3](https://github.com/mkdocstrings/python/releases/tag/0.8.3) - 2023-01-04
430
+
431
+ <small>[Compare with 0.8.2](https://github.com/mkdocstrings/python/compare/0.8.2...0.8.3)</small>
432
+
433
+ ### Code Refactoring
434
+ - Change "unresolved aliases" log level to DEBUG ([dccb818](https://github.com/mkdocstrings/python/commit/dccb818f51278cc8799e2187a615d999a3ab86fb) by Timothée Mazzucotelli).
435
+
436
+
437
+ ## [0.8.2](https://github.com/mkdocstrings/python/releases/tag/0.8.2) - 2022-11-19
438
+
439
+ <small>[Compare with 0.8.1](https://github.com/mkdocstrings/python/compare/0.8.1...0.8.2)</small>
440
+
441
+ ### Bug Fixes
442
+ - Fix base directory used to expand globs ([34cfa4b](https://github.com/mkdocstrings/python/commit/34cfa4b41f264437a338e66f6060ceeee134ba15) by Florian Hofer). [PR #45](https://github.com/mkdocstrings/python/pull/45)
443
+
444
+
445
+ ## [0.8.1](https://github.com/mkdocstrings/python/releases/tag/0.8.1) - 2022-11-19
446
+
447
+ <small>[Compare with 0.8.0](https://github.com/mkdocstrings/python/compare/0.8.0...0.8.1)</small>
448
+
449
+ ### Bug Fixes
450
+ - Expand globs relative to configuration file path ([0dc45ae](https://github.com/mkdocstrings/python/commit/0dc45aeb7c7f9b2f15118ebf1584baa06d365c9b) by David Vegh). [Issue #42](https://github.com/mkdocstrings/python/issues/42), [PR #43](https://github.com/mkdocstrings/python/pull/43)
451
+
452
+
453
+ ## [0.8.0](https://github.com/mkdocstrings/python/releases/tag/0.8.0) - 2022-11-13
454
+
455
+ <small>[Compare with 0.7.1](https://github.com/mkdocstrings/python/compare/0.7.1...0.8.0)</small>
456
+
457
+ ### Features
458
+ - Add support for globs in paths configuration ([29edd02](https://github.com/mkdocstrings/python/commit/29edd02e7a4d83f6b7e8555d4d5b03a79882eb07) by Andrew Guenther). [Issue #33](https://github.com/mkdocstrings/python/issues/33), [PR #34](https://github.com/mkdocstrings/python/pull/34)
459
+
460
+ ### Code Refactoring
461
+ - Support Griffe 0.24 ([3b9f701](https://github.com/mkdocstrings/python/commit/3b9f7013a7367f18e4354c37f029f9caf3ad0a4e) by Timothée Mazzucotelli).
462
+
463
+
464
+ ## [0.7.1](https://github.com/mkdocstrings/python/releases/tag/0.7.1) - 2022-06-12
465
+
466
+ <small>[Compare with 0.7.0](https://github.com/mkdocstrings/python/compare/0.7.0...0.7.1)</small>
467
+
468
+ ### Bug Fixes
469
+ - Fix rendering of `/` in signatures ([3e927e4](https://github.com/mkdocstrings/python/commit/3e927e43192710218fe69f67ff832936c856a678) by Timothée Mazzucotelli). [Issue #25](https://github.com/mkdocstrings/python/issues/25)
470
+
471
+
472
+ ## [0.7.0](https://github.com/mkdocstrings/python/releases/tag/0.7.0) - 2022-05-28
473
+
474
+ <small>[Compare with 0.6.6](https://github.com/mkdocstrings/python/compare/0.6.6...0.7.0)</small>
475
+
476
+ ### Packaging / Dependencies
477
+ - Depend on mkdocstrings 0.19 ([b6a9a47](https://github.com/mkdocstrings/python/commit/b6a9a4799980c4590a7ce2838e12653f40e43be3) by Timothée Mazzucotelli).
478
+
479
+ ### Features
480
+ - Add config option for annotations paths verbosity ([b6c9893](https://github.com/mkdocstrings/python/commit/b6c989315fb028813a919319ad1818b0b1f597ac) by Timothée Mazzucotelli).
481
+ - Use sections titles in SpaCy-styled docstrings ([fe16b54](https://github.com/mkdocstrings/python/commit/fe16b54aea60473575343e3a3c428567b701bd7d) by Timothée Mazzucotelli).
482
+ - Wrap objects names in spans to allow custom styling ([0822ff9](https://github.com/mkdocstrings/python/commit/0822ff9d3ffd3fb71fb619a8b557160661eff9c3) by Timothée Mazzucotelli). [Issue mkdocstrings/mkdocstrings#240](https://github.com/mkdocstrings/mkdocstrings/issues/240)
483
+ - Add Jinja blocks around docstring section styles ([aaa79ee](https://github.com/mkdocstrings/python/commit/aaa79eea40d49a64a69badbe732bf5211fbf055a) by Timothée Mazzucotelli).
484
+ - Add members and filters options ([24a6136](https://github.com/mkdocstrings/python/commit/24a6136ee6c04a6a49ee74b20e65177868a10ea7) by Timothée Mazzucotelli).
485
+ - Add paths option ([dd41182](https://github.com/mkdocstrings/python/commit/dd41182c210f0bb2675ead162adaa01dbbb1949f) by Timothée Mazzucotelli). [Issue mkdocstrings/mkdocstrings#311](https://github.com/mkdocstrings/mkdocstrings/issues/311), [PR #20](https://github.com/mkdocstrings/python/issues/20)
486
+
487
+ ### Bug Fixes
488
+ - Fix CSS class on labels ([312a709](https://github.com/mkdocstrings/python/commit/312a7092394aab968032cf08195af7445a85052f) by Timothée Mazzucotelli).
489
+ - Fix categories rendering ([6407cf4](https://github.com/mkdocstrings/python/commit/6407cf4f2375c894e0c528e932e9b76774a6455e) by Timothée Mazzucotelli). [Issue #14](https://github.com/mkdocstrings/python/issues/14)
490
+
491
+ ### Code Refactoring
492
+ - Disable `show_submodules` by default ([480d0c3](https://github.com/mkdocstrings/python/commit/480d0c373904713313ec76b6e2570dbc35eb527b) by Timothée Mazzucotelli).
493
+ - Merge default configuration options in handler ([347ce76](https://github.com/mkdocstrings/python/commit/347ce76d074c0e3841df2d5162b54d3938d00453) by Timothée Mazzucotelli).
494
+ - Reduce number of template debug logs ([8fed314](https://github.com/mkdocstrings/python/commit/8fed314243e3981fc7b527c69cee628e87b10220) by Timothée Mazzucotelli).
495
+ - Respect `show_root_full_path` for ToC entries (hidden headings) ([8f4c853](https://github.com/mkdocstrings/python/commit/8f4c85328e8b4a45db77f9fc3e536a5008686f37) by Timothée Mazzucotelli).
496
+ - Bring consistency on headings style ([59104c4](https://github.com/mkdocstrings/python/commit/59104c4c51c86c774eed76d8508f9f4d3db5463f) by Timothée Mazzucotelli).
497
+ - Stop using deprecated base classes ([d5ea1c5](https://github.com/mkdocstrings/python/commit/d5ea1c5cf7884d8c019145f73685a84218e69840) by Timothée Mazzucotelli).
498
+
499
+
500
+ ## [0.6.6](https://github.com/mkdocstrings/python/releases/tag/0.6.6) - 2022-03-06
501
+
502
+ <small>[Compare with 0.6.5](https://github.com/mkdocstrings/python/compare/0.6.5...0.6.6)</small>
503
+
504
+ ### Code Refactoring
505
+ - Always hide `self` and `cls` parameters ([7f579d1](https://github.com/mkdocstrings/python/commit/7f579d162e184adcfe25b2215bce4d38677f75b7) by Timothée Mazzucotelli). [Issue #7](https://github.com/mkdocstrings/python/issues/7)
506
+ - Use `pycon` for examples code blocks ([6545900](https://github.com/mkdocstrings/python/commit/6545900eecc67c8a6ddd343c497ac22fdd6a26e2) by Timothée Mazzucotelli).
507
+
508
+
509
+ ## [0.6.5](https://github.com/mkdocstrings/python/releases/tag/0.6.5) - 2022-02-24
510
+
511
+ <small>[Compare with 0.6.4](https://github.com/mkdocstrings/python/compare/0.6.4...0.6.5)</small>
512
+
513
+ ### Bug Fixes
514
+ - Don't escape signatures return annotations ([ac54bfc](https://github.com/mkdocstrings/python/commit/ac54bfc5761337aa606fb1aa6575745062ce26f8) by Timothée Mazzucotelli). [Issue #6](https://github.com/mkdocstrings/python/issues/6)
515
+
516
+
517
+ ## [0.6.4](https://github.com/mkdocstrings/python/releases/tag/0.6.4) - 2022-02-22
518
+
519
+ <small>[Compare with 0.6.3](https://github.com/mkdocstrings/python/compare/0.6.3...0.6.4)</small>
520
+
521
+ ### Bug Fixes
522
+ - Fix rendering of signature return annotation ([b92ba3b](https://github.com/mkdocstrings/python/commit/b92ba3b370388aa6c956bcc70ba87b7aebb91a4c) by Timothée Mazzucotelli). [Issue #4](https://github.com/mkdocstrings/python/issues/4)
523
+
524
+
525
+ ## [0.6.3](https://github.com/mkdocstrings/python/releases/tag/0.6.3) - 2022-02-20
526
+
527
+ <small>[Compare with 0.6.2](https://github.com/mkdocstrings/python/compare/0.6.2...0.6.3)</small>
528
+
529
+ ### Bug Fixes
530
+ - Fix examples rendering ([a06a7e3](https://github.com/mkdocstrings/python/commit/a06a7e34c7017374c5bed41f4757ed86ae64cb2e) by Timothée Mazzucotelli). [Issue mkdocstrings/griffe#46](https://github.com/mkdocstrings/griffe/issues/46)
531
+
532
+
533
+ ## [0.6.2](https://github.com/mkdocstrings/python/releases/tag/0.6.2) - 2022-02-17
534
+
535
+ <small>[Compare with 0.6.1](https://github.com/mkdocstrings/python/compare/0.6.1...0.6.2)</small>
536
+
537
+ ### Bug Fixes
538
+ - Catch alias resolution errors ([b734dd0](https://github.com/mkdocstrings/python/commit/b734dd0dcd72f5b985b3afce01e852c9c74e451a) by Timothée Mazzucotelli).
539
+
540
+
541
+ ## [0.6.1](https://github.com/mkdocstrings/python/releases/tag/0.6.1) - 2022-02-17
542
+
543
+ <small>[Compare with 0.6.0](https://github.com/mkdocstrings/python/compare/0.6.0...0.6.1)</small>
544
+
545
+ ### Bug Fixes
546
+ - Don't pop from fallback config ([bde32af](https://github.com/mkdocstrings/python/commit/bde32afb5d99539813b1884a4c735de5845f62ae) by Timothée Mazzucotelli).
547
+ - Fix rendering init method source when merged into class ([4a20aea](https://github.com/mkdocstrings/python/commit/4a20aeaa60f3efbcb4781a369feef3b4826ff1df) by Timothée Mazzucotelli).
548
+
549
+
550
+ ## [0.6.0](https://github.com/mkdocstrings/python/releases/tag/0.6.0) - 2022-02-13
551
+
552
+ <small>[Compare with 0.5.4](https://github.com/mkdocstrings/python/compare/0.5.4...0.6.0)</small>
553
+
554
+ ### Features
555
+ - Add option to merge `__init__` methods' docstrings into their classes' docstrings ([1b4d1c0](https://github.com/mkdocstrings/python/commit/1b4d1c0e9254fc51756caed3875fbc8c1da079a6) by Timothée Mazzucotelli).
556
+ - Support separate attribute signature ([e962b88](https://github.com/mkdocstrings/python/commit/e962b885f48570762c5bfcefc9b61e5fc1df1c70) by Timothée Mazzucotelli).
557
+
558
+ ### Bug Fixes
559
+ - Restore full cross-refs paths on hover ([ac11970](https://github.com/mkdocstrings/python/commit/ac1197062f2e23e819f144fe74a774d504d0ac49) by Timothée Mazzucotelli).
560
+ - Fix rendering of labels ([52919c5](https://github.com/mkdocstrings/python/commit/52919c559378a6006bbe931423c5f03eb5883eaf) by Timothée Mazzucotelli).
561
+
562
+ ### Code Refactoring
563
+ - Don't add trailing parentheses in functions heading when separate signature ([885696e](https://github.com/mkdocstrings/python/commit/885696e05606d07334e0428128ed688d54098da1) by Timothée Mazzucotelli).
564
+ - Use more explicit template debug messages ([f2122d7](https://github.com/mkdocstrings/python/commit/f2122d7fa119ed055ffe2b2bac72d2c643daca1c) by Timothée Mazzucotelli).
565
+
566
+
567
+ ## [0.5.4](https://github.com/mkdocstrings/python/releases/tag/0.5.4) - 2022-02-13
568
+
569
+ <small>[Compare with 0.5.3](https://github.com/mkdocstrings/python/compare/0.5.3...0.5.4)</small>
570
+
571
+ ### Bug Fixes
572
+ - Don't load additional modules during fallback ([69b8e25](https://github.com/mkdocstrings/python/commit/69b8e25cddc9e256c5edb8843592a466023aa124) by Timothée Mazzucotelli).
573
+
574
+
575
+ ## [0.5.3](https://github.com/mkdocstrings/python/releases/tag/0.5.3) - 2022-02-08
576
+
577
+ <small>[Compare with 0.5.2](https://github.com/mkdocstrings/python/compare/0.5.2...0.5.3)</small>
578
+
579
+ ### Bug Fixes
580
+ - Allow passing `null` as docstring style ([f526816](https://github.com/mkdocstrings/python/commit/f526816ef1d499795c647e6fe184ba91c1d41b1b) by Timothée Mazzucotelli). [Issue #2](https://github.com/mkdocstrings/python/issues/2)
581
+
582
+
583
+ ## [0.5.2](https://github.com/mkdocstrings/python/releases/tag/0.5.2) - 2022-02-05
584
+
585
+ <small>[Compare with 0.5.1](https://github.com/mkdocstrings/python/compare/0.5.1...0.5.2)</small>
586
+
587
+ ### Dependencies
588
+ - Require at least mkdocstrings 0.18 ([7abdda4](https://github.com/mkdocstrings/python/commit/7abdda416e25128eec06f3b15aae5058fbc7320c) by Timothée Mazzucotelli).
589
+
590
+
591
+ ## [0.5.1](https://github.com/mkdocstrings/python/releases/tag/0.5.1) - 2022-02-03
592
+
593
+ <small>[Compare with 0.5.0](https://github.com/mkdocstrings/python/compare/0.5.0...0.5.1)</small>
594
+
595
+ ### Dependencies
596
+ - Depend on Griffe >= 0.11.1 ([1303557](https://github.com/mkdocstrings/python/commit/1303557928a27a3d9b063baee9d698458f471357) by Timothée Mazzucotelli).
597
+
598
+ ### Code Refactoring
599
+ - Move handler into its own module ([b787e78](https://github.com/mkdocstrings/python/commit/b787e78e31652438039775850e55ea956c22e8d0) by Timothée Mazzucotelli).
600
+
601
+
602
+ ## [0.5.0](https://github.com/mkdocstrings/python/releases/tag/0.5.0) - 2022-02-03
603
+
604
+ <small>[Compare with 0.4.1](https://github.com/mkdocstrings/python/compare/0.4.1...0.5.0)</small>
605
+
606
+ ### Features
607
+ - Allow changing docstring style of an object ([39240c1](https://github.com/mkdocstrings/python/commit/39240c1497dced15c03f9046138f2829fc10e139) by Timothée Mazzucotelli).
608
+
609
+ ### Bug Fixes
610
+ - Warn if Black is not installed when formatting signature ([b848277](https://github.com/mkdocstrings/python/commit/b84827789b2bf66a4b76ff63a514ec6ba98cae68) by Timothée Mazzucotelli).
611
+ - Fix missing default for `docstring_section_style` option ([774988e](https://github.com/mkdocstrings/python/commit/774988ef06a9bf3446949da63611ad7bc5a712fc) by Timothée Mazzucotelli).
612
+
613
+ ### Code Refactoring
614
+ - Change to new way of stripping paragraphs ([33d4594](https://github.com/mkdocstrings/python/commit/33d45945bf8ffce2435a6b3749795397fa7c3fc8) by Timothée Mazzucotelli).
615
+
616
+
617
+ ## [0.4.1](https://github.com/mkdocstrings/python/releases/tag/0.4.1) - 2022-02-01
618
+
619
+ <small>[Compare with 0.4.0](https://github.com/mkdocstrings/python/compare/0.4.0...0.4.1)</small>
620
+
621
+ ### Bug Fixes
622
+ - Fix docstring admonitions rendering ([a24ae2e](https://github.com/mkdocstrings/python/commit/a24ae2e95f4c0451a44037120451cf06c973ba65) by Timothée Mazzucotelli).
623
+
624
+
625
+ ## [0.4.0](https://github.com/mkdocstrings/python/releases/tag/0.4.0) - 2022-02-01
626
+
627
+ <small>[Compare with 0.3.0](https://github.com/mkdocstrings/python/compare/0.3.0...0.4.0)</small>
628
+
629
+ ### Code Refactoring
630
+ - Use the new `mkdocstrings_handlers` namespace ([23c9023](https://github.com/mkdocstrings/python/commit/23c9023780535251778077cd7d957c0067ecb0dc) by Timothée Mazzucotelli).
631
+
632
+
633
+ ## [0.3.0](https://github.com/mkdocstrings/python/releases/tag/0.3.0) - 2022-01-14
634
+
635
+ <small>[Compare with 0.2.0](https://github.com/mkdocstrings/python/compare/0.2.0...0.3.0)</small>
636
+
637
+ ### Features
638
+ - Support griffe 0.10 ([28061de](https://github.com/mkdocstrings/python/commit/28061de20094c510f27bb375b2e1dc44a699809d) by Timothée Mazzucotelli).
639
+
640
+ ### Dependencies
641
+ - Require griffe 0.10 ([cfbd7bb](https://github.com/mkdocstrings/python/commit/cfbd7bb4761691ef36100962c775ed1d0a247514) by Timothée Mazzucotelli).
642
+
643
+ ### Code Refactoring
644
+ - Use new logger patching utility ([4cdb292](https://github.com/mkdocstrings/python/commit/4cdb2921b3a9292db3ef0663c63f148a4eec3966) by Timothée Mazzucotelli).
645
+
646
+
647
+ ## [0.2.0](https://github.com/mkdocstrings/python/releases/tag/0.2.0) - 2021-12-28
648
+
649
+ <small>[Compare with 0.1.0](https://github.com/mkdocstrings/python/compare/0.1.0...0.2.0)</small>
650
+
651
+ ### Dependencies
652
+ - Depend on griffe >= 0.7.1 ([34f7ebd](https://github.com/mkdocstrings/python/commit/34f7ebd41f3ebda025ad87e3b52a7226fcb93720) by Timothée Mazzucotelli).
653
+ - Upgrade griffe, no upper bound ([8f0aa42](https://github.com/mkdocstrings/python/commit/8f0aa42eed07424a1377708897d92f9894f4abdb) by Timothée Mazzucotelli).
654
+
655
+ ### Features
656
+ - Add `show_signature` rendering option ([0f07c2e](https://github.com/mkdocstrings/python/commit/0f07c2e51a51a56eeb5d32fdf05dbed7243f0bc5) by Will Da Silva).
657
+
658
+ ### Bug Fixes
659
+ - Fix templates for named docstring elements ([47868a1](https://github.com/mkdocstrings/python/commit/47868a143bf2c462abd5ad85bd0ab8dca7bc5f82) by Timothée Mazzucotelli).
660
+
661
+
662
+ ## [0.1.0](https://github.com/mkdocstrings/python/releases/tag/0.1.0) - 2021-12-19
663
+
664
+ <small>[Compare with first commit](https://github.com/mkdocstrings/python/compare/0032f18c9f902c3e75e0e00114ca8fa6a810c8f5...0.1.0)</small>
665
+
666
+ ### Features
667
+ - Implement handler and add templates ([dbb580a](https://github.com/mkdocstrings/python/commit/dbb580aa79f6b2f8a089c80bdc67d0f7457c2d30) by Timothée Mazzucotelli).
668
+
669
+ ### Bug Fixes
670
+ - Fix separate signature feature ([da6e81c](https://github.com/mkdocstrings/python/commit/da6e81c897899f09e1dae7bb8930ce6782aeb306) by Timothée Mazzucotelli).
671
+ - Fix signature template (parameters annotations) ([b34ead0](https://github.com/mkdocstrings/python/commit/b34ead008773880fd8d1d7a2a41768ec27820520) by Timothée Mazzucotelli).
672
+ - Only show source when present ([c270d68](https://github.com/mkdocstrings/python/commit/c270d68c9e17204606ae12a2159c04563a18ec2b) by Timothée Mazzucotelli).
673
+
674
+ ### Code Refactoring
675
+ - Return all known anchors ([9bbfe14](https://github.com/mkdocstrings/python/commit/9bbfe1442e2aab28bd6fb2618c943d3f698750ab) by Timothée Mazzucotelli).
676
+ - Update for griffe 0.4.0 ([831aabb](https://github.com/mkdocstrings/python/commit/831aabb135db7e75729954adc675af6379f58e24) by Timothée Mazzucotelli).