-
Notifications
You must be signed in to change notification settings - Fork 14
Commit 4d7e835
authored
Bump pydoclint from 0.6.6 to 0.6.11 (#411)
Bumps [pydoclint](https://github.com/jsh9/pydoclint) from 0.6.6 to
0.6.11.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/jsh9/pydoclint/releases">pydoclint's
releases</a>.</em></p>
<blockquote>
<h2>0.6.11</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix bug in isShortDocstring by <a
href="https://github.com/jsh9"><code>@jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/256">jsh9/pydoclint#256</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jsh9/pydoclint/compare/0.6.10...0.6.11">https://github.com/jsh9/pydoclint/compare/0.6.10...0.6.11</a></p>
<h2>0.6.10</h2>
<h2>What's Changed</h2>
<ul>
<li>Migrate from setup.cfg/py to pyproject.toml by <a
href="https://github.com/jsh9"><code>@jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/251">jsh9/pydoclint#251</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jsh9/pydoclint/compare/0.6.9...0.6.10">https://github.com/jsh9/pydoclint/compare/0.6.9...0.6.10</a></p>
<h2>0.6.9</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix output formatting bug with blank lines during redirection by <a
href="https://github.com/jsh9"><code>@jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/250">jsh9/pydoclint#250</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jsh9/pydoclint/compare/0.6.8...0.6.9">https://github.com/jsh9/pydoclint/compare/0.6.8...0.6.9</a></p>
<h2>0.6.8</h2>
<h2>What's Changed</h2>
<ul>
<li>Enhance numpy-style docstring detection and update documentation by
<a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/249">jsh9/pydoclint#249</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jsh9/pydoclint/compare/0.6.7...0.6.8">https://github.com/jsh9/pydoclint/compare/0.6.7...0.6.8</a></p>
<h2>0.6.7</h2>
<h2>What's Changed</h2>
<ul>
<li>Revert <code>--quiet</code> to default to <code>False</code> by <a
href="https://github.com/jsh9"><code>@jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/241">jsh9/pydoclint#241</a></li>
<li>Fix a typo in the documentation by <a
href="https://github.com/jsh9"><code>@jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/242">jsh9/pydoclint#242</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jsh9/pydoclint/compare/0.6.6...0.6.7">https://github.com/jsh9/pydoclint/compare/0.6.6...0.6.7</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/jsh9/pydoclint/blob/main/CHANGELOG.md">pydoclint's
changelog</a>.</em></p>
<blockquote>
<h2>[0.6.11] - 2025-08-31</h2>
<ul>
<li>Fixed
<ul>
<li>A bug where short docstring is incorrectly detected</li>
</ul>
</li>
<li>Full diff
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/compare/0.6.10...0.6.11">https://github.com/jsh9/pydoclint/compare/0.6.10...0.6.11</a></li>
</ul>
</li>
</ul>
<h2>[0.6.10] - 2025-08-14</h2>
<ul>
<li>Changed
<ul>
<li>Migrated from setup.cfg/setup.py to pyproject.toml for modern Python
packaging</li>
<li>Consolidated all package metadata into pyproject.toml [project]
section</li>
<li>Removed deprecated setup.cfg and setup.py files</li>
</ul>
</li>
<li>Full diff
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/compare/0.6.9...0.6.10">https://github.com/jsh9/pydoclint/compare/0.6.9...0.6.10</a></li>
</ul>
</li>
</ul>
<h2>[0.6.9] - 2025-08-14</h2>
<ul>
<li>Fixed
<ul>
<li>Fixed output formatting bug where blank lines between files would
appear at
the end when redirecting output to a file instead of between each
file</li>
</ul>
</li>
<li>Full diff
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/compare/0.6.8...0.6.9">https://github.com/jsh9/pydoclint/compare/0.6.8...0.6.9</a></li>
</ul>
</li>
</ul>
<h2>[0.6.8] - 2025-08-14</h2>
<ul>
<li>Changed
<ul>
<li>Enhanced numpy-style docstring detection with pattern-based
recognition</li>
<li>Added pattern-based detection that looks for section headers with
dashes
(e.g., <code>Returns\n-------</code>) before falling back to size-based
comparison</li>
</ul>
</li>
<li>Updated
<ul>
<li>Updated documentation to reflect new detection logic and reformatted
to 79
chars per line</li>
</ul>
</li>
<li>Added
<ul>
<li>Added comprehensive test coverage for the new numpy-style detection
functionality</li>
</ul>
</li>
<li>Full diff
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/compare/0.6.7...0.6.8">https://github.com/jsh9/pydoclint/compare/0.6.7...0.6.8</a></li>
</ul>
</li>
</ul>
<h2>[0.6.7] - 2025-05-18</h2>
<ul>
<li>Changed
<ul>
<li>Reverted the default behavior of <code>--quiet</code> to be
<code>False</code></li>
</ul>
</li>
<li>Fixed
<ul>
<li>Fixed a typo in the documentation</li>
</ul>
</li>
<li>Full diff
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/compare/0.6.6...0.6.7">https://github.com/jsh9/pydoclint/compare/0.6.6...0.6.7</a></li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/commit/671f1516ef899d321aab874ccca759e7a014821a"><code>671f151</code></a>
Fix bug in isShortDocstring (<a
href="https://redirect.github.com/jsh9/pydoclint/issues/256">#256</a>)</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/50b0a35b03fd69dc1dfdf108e33083199b4dd2fd"><code>50b0a35</code></a>
Properly escape backslash; remove redundant noqa LN002</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/15818da938b3e8f340f0f36e89a6ff67a9733f51"><code>15818da</code></a>
Replace cercis with muff</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/7ad5eefc9b0c2148a41f4bb9cbbd3f0dc94021cb"><code>7ad5eef</code></a>
Update index.md</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/534dec56a76eae59bfd1bfbd73aab761b0d76909"><code>534dec5</code></a>
Add downloads stats badges to README</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/b60d8bc616bdaea4e1cd2d37a84d58c25871b061"><code>b60d8bc</code></a>
Migrate from setup.cfg/py to pyproject.toml (<a
href="https://redirect.github.com/jsh9/pydoclint/issues/251">#251</a>)</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/230a79b76eaa1c07797dfc38e8ac0bf3f9f4ffcb"><code>230a79b</code></a>
Fix output formatting bug with blank lines during redirection (<a
href="https://redirect.github.com/jsh9/pydoclint/issues/250">#250</a>)</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/17ceca23504f5a7bbb832a0ab7a09d0799f09d48"><code>17ceca2</code></a>
Enhance numpy-style docstring detection and update documentation (<a
href="https://redirect.github.com/jsh9/pydoclint/issues/249">#249</a>)</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/f11818557fc2fe59025211280840ea47fb8b1fa6"><code>f118185</code></a>
Add trigger for python-publish.yml</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/07c711603aea763c220efd823a5722940d77df57"><code>07c7116</code></a>
Update python-publish.yml</li>
<li>Additional commits viewable in <a
href="https://github.com/jsh9/pydoclint/compare/0.6.6...0.6.11">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>File tree
Expand file treeCollapse file tree
1 file changed
+1
-1
lines changedOpen diff view settings
Filter options
Expand file treeCollapse file tree
1 file changed
+1
-1
lines changedOpen diff view settings
Collapse file
+1-1Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
56 | | - | |
| 56 | + | |
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
| |||
0 commit comments